public class PrimeNumber02{
public static void main(String [ ] args)
{ int count = 0;
boolean b ;
for(int i = 101;i<200;i+=2)
{
for(int j = 2;j<=Math.sqrt(i);j++)
{
if(i%j==0){ break;}
else{ b=true;}
if(b) {
count++;
System.out.print(i);
if(count%5==0)
System.out.println();
}
}
}
}
}
运行结果是:
101101101101101
101101101101103
103......
我想要的是:
101 103 107 109 113
127 131 137 139 149
151 157 163 167 173
179 181 191 193 197
199
所以上诉的代码错在哪里?
guozhchun
相关分类