Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

yuller/hello

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

2 Commits

Repository files navigation

hello

import java.util.Random;

public class Helloworld { public static void main(String ... args) { System.out.println(randomString(-229985452)+' '+randomString(-147909649)); }

public static String randomString(int seed) {
 Random rand = new Random(seed);
 StringBuilder sb = new StringBuilder();
 while(true) {
 int n = rand.nextInt(27);
 if (n == 0) break;
 sb.append((char) ('`' + n));
 }
 return sb.toString();
}

}

About

first

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /