public class TestRondam {
public static void main(String[] args) {
// 随机数范围
int rondam = 5;
for (int i = 0; i < 10; i++) {
System.out.println((int) (Math.random() * (rondam + 1)));
}
}
}
运行结果:
1
0
2
2
0
3
2
1
5
4
public class TestRondam {
public static void main(String[] args) {
// 随机数范围
int rondam = 5;
for (int i = 0; i < 10; i++) {
System.out.println((int) (Math.random() * (rondam + 1)));
}
}
}
运行结果:
1
0
2
2
0
3
2
1
5
4