- /**
- * 编程打印所有的3位质数,质数特点:只能被1和其本身整除
- *
- * @author zyy
- *
- */
- public class Test5 {
- public static void main(String[] args) {
- //1.打印所有三位质数----》100-999之间
- for(int i = 100;i<=999;i++){
- //2.只能被1和本身整除
- boolean flag = true;
- int p= 2;
- for(;p<=Math.sqrt(i);p++){
- if(i%p==0){
- flag = false;
- continue;
- }
- }
- if(p>Math.sqrt(i)&&flag){
- System.out.println(i);
- }
- }
-
- }
-
-
- }
复制代码
|
|