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();
}
}
- My bedroom
Highlights
- Pro
Pinned Loading
-
TalTech-Testing/automated-testing-service
TalTech-Testing/automated-testing-service PublicFinal thesis - Automated student code testing service
Java 1
-
TalTech-Testing/monitoring-service
TalTech-Testing/monitoring-service PublicAdmin panel for automated testing service
Vue
-
-
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.