如题所述
提取random是在Math的方法里的直接给你个1-100以内的随机数代码好拉
Random r=new Random();
int i1=r.nextInt();
int i2=r.nextInt(100);//返回0到100之间的随机数
double d=r.nextDouble();
float f=r.nextFloat();
byte[] c=new byte[10];;
r.nextBytes(c);//生成的随机数存放在 数组c中