- class SuShuTest
- {
- public static void main(String[] args)
- {
-
- int x ,y,i=0;
- for(x=101;x<=200;x+=2)
- {
- boolean f = true;
- for(y=2;y<=Math.sqrt(x);y++)
- {
- if(x%y==0)
- {
- f = false;
- continue;
- }
- }
- if(f)
- {
- System.out.printf("%d\t",x);
- i++;
- if(i%5==0)
- {
- System.out.println();
- }
- }
-
- }
- System.out.println("共有"+i+"个素数");
- }
- }
复制代码
自赞一个。。。。 |