- public static void main(String[] args) {
- int count = 0;
- for(int i=2;i<100;i++){
- boolean b=false;
- for(int j=2;j<=i-1;j++){ //从2开始,而不是1
- if(i % j == 0) {
- b=true;
- break;
- }
- }
- if(!b) {
- count ++;
- System.out.print(i+" ");
- }
- }
- System.out.print( "素数个数是: " + count);
- }
复制代码 |
|