package javaapplication1;
import java.util.Random;
public class Example {
public static void main(String[] args) {
Random rand = new Random();
rand.setSeed(System.currentTimeMillis());
int num;
for (int i = 0; i < 30; i++) {
num = rand.nextInt() % 100;
System.out.println(num);
}
}
}
/*
run:
-6
-61
48
-84
7
80
-8
-51
-83
20
-95
18
46
-49
45
24
-81
94
-12
36
-84
-32
-36
91
61
39
-38
19
29
41
*/