package com.heima.tests;
import java.util.Random;
public class Demo1_Random {
public static void main(String[] args) {
Random r = new Random();//不传入种子的构造方法
for(int i =1;i <= 60;i++) {//生成60个随机数
int n = 1 +r.nextInt(100);//r.nextInt(100)生成的是[0,100)
if(n % 3 == 0 && n % 7 != 0) {
System.out.println(n);
}
}
}
}
这个是生成60个随机数并判断的,若是60个互不相同的数会有些麻烦,请及时反馈,我来改
|