public class test3 {
public static void main(String[] args) {
int x,y;
for(x=2;x<=100;x++) {
for(y=2;y<x;y++) {
if(x%y==0)
break;
}
if(y==x)
System.out.print(" "+x);
}
}
}
作业.找出100以内所有素数
最新推荐文章于 2021-05-17 23:41:24 发布