一.取随机数字的两种方式
Ⅰ.导入Random类
Ⅱ.Math.random()*随机数
*说明:Ⅱ方法支持多线程
二..例子说明
Ⅰ.导入Random类
eg:
import java.util.Random;
public class random{
public static void main(){
Random ra=new Random();
int a=ra.nextInt(10);//取随机数0~9;
System.out.println(a);
}
}
Ⅱ.Math.random()*随机数
eg:
public class random{
public static void main(){
int number=(int)Math.random()*10;//取随机数0~9;
System.out.println(number);
}
}