用for语句输入1到100的质数这样怎么不可以呢?
public class Demo1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int a=2;a<=100;a++){
for(int b=2;b<=100;b++){
if(a%b==0){
break;
}
if(a==b){
System.out.print(a+" ");
}
}
}
}
}