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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

判断101-200之间有多少个素数,并输出所有素数。
程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除,则表明此数不是素数,反之是素数。

7 个回复

倒序浏览
public class SUshu {
public static void main(String[] args) {
  p:for (int i = 100; i < 1000; i++) {
   
   for(int j = 2;j < i;j++){
    if(i % j ==0){
     continue p;
    }
   }
   System.out.println(i);
  }
}
}
回复 使用道具 举报
//不同的方法,相同的结果
public class Prog2A02SuShu {
        public static void main(String[] args) {
                int i = 0;
                for (int x = 101; x < 201; x++) { // 外层for循环控制目标数字
                        boolean temp = true; // 假设此数是素数
                        for (int y = 2; y <= x - 1; y++) { // 内层for循环控制目标数除以2到目标数减1
                                if (x % y == 0) {
                                        // 只要走到这,不是素数
                                        temp = false;
                                        return;
                                }
                        }
                        if (temp) {
                                i++;
                                System.out.println(x + "是素数" + "        第" + i + "次");
                        }
                }
                System.out.println(Math.sqrt(16));
        }
}

回复 使用道具 举报
66666666666666666
回复 使用道具 举报
6666666666666666666666666666
回复 使用道具 举报
weidong10heima 发表于 2016-7-13 19:44
//不同的方法,相同的结果
public class Prog2A02SuShu {
        public static void main(String[] args) {

这是C语言吧
回复 使用道具 举报
是java语言呀,表示学过C#,但没有学过C语言,
回复 使用道具 举报
都是高手呀
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马