Random rand =new Random(25); int i; i=rand.nextInt(100);
初始化时25并没有起直接作用,rand.nextInt(100);中的100是随机数的上限,产生的随机数为0-100的整数,不包括100。