public class 学习1{
public static void main(String[] args){
}
public static void zuiXiaoZhiShu(int n){ /*设置一个变量为n*/
while (true){ /*死循环*/
n++;
boolean c = zhiShu(n);/*判断是否为质数,是否为ture或者false*/
if (c){ /*如果为ture是质数 跳出n++循环执行以下代码,如果为false不是质数继续循环n++;*/
System.out.println(n);
break; /*让循环停止 */
}
}
}
/*boolean b = zhiShu(773);
System.out.println( b ? "是质数":"不是质数");*/
public static boolean zhiShu(int a){/*使用booleaan 类型判断是否为质数
/* 假如a=19*/
for (int i = 2 ;i< a ; i++){
if (a % i==0){ /*如果取余数=0,能被整除,说明这个不是质数*/
/*这个判断语句会输出panduan以下结果
/*
19 % 2
19 % 3
19 % 4
19 % 5
~
~
~直到
19 % 18
进行判断 如果都不能被整除则不会执行 return false;
如果有一个能被整除则不会执行 return ture
*/
return false;
}
}
return true;/*如果都不能被整除则会执行这个语句*/
}
}
原文:https://www.cnblogs.com/sfgg20208261821/p/13676026.html