A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

        for(int i=m;i<n;i++){public class Prog2{
        public static void main(String[] args){
                int m = 1;
                int n = 1000;
                int count = 0;
                //统计素数个数

                        if(isPrime(i)){
                                count++;
                                System.out.print(i+" ");
                                if(count%10==0){
                                        System.out.println();
                                }
                        }
                }
                System.out.println();

2 个回复

倒序浏览
isPrime是个方法吧?
  1. public class TestZhi {

  2.         public static void main(String[] args) {
  3.                 // TODO Auto-generated method stub
  4.                
  5.                 int count =0;                       
  6.                 for(int i=101;i<=200;i++){
  7.                         boolean b = true;
  8.                         for(int j =2;j<i;j++){
  9.                                 if(i%j ==0){
  10.                                         b = false;
  11.                                         break;
  12.                                 }
  13.                         }                        
  14.                         if(b==true){
  15.                                 count++;
  16.                                 if(count%10==0){
  17.                                         System.out.println(i);
  18.                                 }
  19.                                 else{
  20.                                         System.out.print(i+"  ");
  21.                                 }
  22.                         }
  23.                 }
  24.                 System.out.println("总共质数为:"+count+"个");

  25.         }

  26. }
复制代码


回复 使用道具 举报
66666666666
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马