第三课作业2:100以内全部素数
程序员文章站
2022-05-11 20:29:18
...
public class hw2{
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(x==y)System.out.print(x+" ");
}
}
}
上一篇: 最大公共子序列和__蓝桥
下一篇: python(N1CTF)详解