public class Test {
public static void main(String args[]){
boolean a=false;
for(int i=100;i<201;i++){
a=false;
for(int j=2;j<i-1;j++){
if(i%j==0){
a=true;
break;
}
}
if(!a){
System.out.println(i);
}
}
}
}
JAVA实现输出100到200之间的素数
于 2013-04-01 16:23:48 首次发布