//产生随机数。。记得要打包import java.util.*;
1 Random random = new Random(); 2 int num = random.nextInt(11);//产生0-10之间的随机数 3 System.out.println("随机数 " + num);