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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© wang06125439 中级黑马   /  2016-5-1 00:04  /  211 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package itcast;

public class Fifth {

        /**
         * 1--100的质数
         */
        public static void main(String[] args) {
                demo1();
                        int count = 0;
                        System.out.println("所有的质数:");
                        System.out.println(2);
                        System.out.println(3);
                        for (int i = 1; i <= 100; i++) {
                                boolean b = false;
                                for (int j = 2; j <= Math.sqrt(i); j++) {
                                        if (i % j == 0) {
                                                b = false;
                                                break;
                                        }else {
                                                b = true;
                                        }
                                }
                                if (b == true) {
                                        System.out.println(i);
                                        count++;
                                }
                        }
                        System.out.println("1-100间的质数个数为" + (count+2));
                }

       

               
       

       
        private static void demo1() {
                int count = 0;
                for (int i = 2; i <= 100; i++) {
                        boolean b = false;
                        for (int j = 1; j < 100; j++) {
                                if(i % j == 0) {
                                        count++;
                                }
                        }
                        if(count == 2) {
                                System.out.println(i);
                        }
                }
        }

}

1 个回复

倒序浏览
一生只为黑马币一生只为黑马币
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马