/*
public static double random()返回带正号的 double 值,该值大于等于 0.0 且小于 1.0。
得到一个1-100之间的随机整数
Math.random() * 100 + 1 , 得到:1.0<= x<101.0
(int)(Math.random() * 100 + 1) , 得到:1 -- 100
*/
class MathDemo {
public static void main(String[] args) {
//System.out.println(Math.random());
//System.out.println((int)(Math.random() * 100 + 1));
for (int i=0; i<100; i++) {
System.out.println((int)(Math.random() * 100 + 1));
}
}
} |
|