class MathDemo{
public static void main(String[] args){
for(int x = 0 ; x < 10 ; x ++){
double result = Math.random();
System.out.println(result);
}
for(int x = 0 ; x < 100 ; x ++){
int result = (int)(Math.random() * 100) + 1; //这里求解
System.out.println(result);
}
}
}
int result = (int)(Math.random() * 100) + 1; 为什么不能写成 int result = Math.random()*100 + 1;呢 |