打印100以内的素数
程序员文章站
2024-03-22 17:55:04
...
public class SuShuPrint {
public static void main(String[] args) {
int count=0;
for (int i=2;i<=100;i++){
boolean flag=true;
for(int j=2;j<i;j++){
if (i%j==0){
flag=false;
break;
}
}
if(flag) {
System.out.print(i + " ");
count++;
}
}
System.out.println();
System.out.println("一共"+count+"个素数");
}
}
运行结果:
上一篇: 0004有意思的小题目