作业.找出100以内所有素数
程序员文章站
2022-05-11 20:25:48
...
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);
}
}
}