//判断101-200之间有多少个质数,并打印所有质数
public class 求质数 {
public static void main(String[] args) {
//首先定义一个变量,记录质数的个数,初始值为0
int count = 0;
for (int i = 101; i <= 200; i++) {//这个for循环用来遍历101-200的每个数字
boolean flag = true;
for (int j = 2; j <= i - 1; j++) {//这个for循环用来判断是否为质数
if (i % j == 0) {
flag = false;
break;
}
}
if (flag == true) {
System.out.println(i + "是质数");
count++;
}
}
System.out.println("共有" + count + "个质数");
}
}