制作于2018年2月8日
//生成随机的数字 int x = (int)(Math.random()*1000); //生成0~1000的数字 //若要产生死循环: while(true) {};
随机生成0-100的数:
int x = (int )(Math.random()*100);
随机生成数字
math.random()*1000(生成一千以内的整数)