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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始


  1. public class ZhiShu {
  2. /*
  3. * 2.编程打印所有的3位质数,质数特点:只能被1和其本身整除
  4. *
  5. */
  6.         public static void main(String[] args) {
  7.                 int n = 100;
  8.                 int count=0;
  9.                 for (int i = 100; i < 1000; i++) {                //遍历所有的三位数
  10.                         for (int j = 2; j <= i/2; j++) {        //遍历所取的三位数的一半
  11.                                 if (i%j == 0) {                                //该三位数从2开始到它的一半 看能否整除
  12.                                         break;
  13.                                 }else{
  14.                                         if(j == i/2){
  15.                                                 System.out.print(i + " ");
  16.                                                 count++;
  17.                                                 if(count == 10){
  18.                                                         System.out.println();
  19.                                                         count=0;
  20.                                                 }
  21.                                         }
  22.                                         continue;
  23.                                 }
  24.                         }
  25.                 }
  26.         }

  27. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马