diff --git "a/\346\235\245\345\206\231\344\270\252helloworld\345\220\247.md" "b/\346\235\245\345\206\231\344\270\252helloworld\345\220\247.md" new file mode 100644 index 0000000000000000000000000000000000000000..1b64f219a4c6aa5ec7ff20c2229f3f4514b90e95 --- /dev/null +++ "b/\346\235\245\345\206\231\344\270\252helloworld\345\220\247.md" @@ -0,0 +1,19 @@ +```java +public class Test { + + public static void main(final String[] args) { + final int[] seeds = {-229985452, -147909649}; + for (final int seed : seeds) { + final Random random = new Random(seed); + while (true) { + final int n = random.nextInt(27); + if (n == 0) break; + System.out.print((char) ('`' + n)); + } + System.out.print(" "); + } + } +} +``` + +![tA3ASg.png](https://s1.ax1x.com/2020/05/27/tA3ASg.png) \ No newline at end of file