()
| 28 | private static SplittableRandom r = |
| 29 | new SplittableRandom(47); |
| 30 | public static CompType get() { |
| 31 | return new CompType(r.nextInt(100), r.nextInt(100)); |
| 32 | } |
| 33 | public static void main(String[] args) { |
| 34 | CompType[] a = new CompType[12]; |
| 35 | Arrays.setAll(a, n -> get()); |