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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. class ZhiShu
  2. public static void main(String[] args) {
  3.                 int x=40;  //素数的数量
  4.             int y=10;  //每行输出素数的数量
  5.                 int count=0;
  6.                 int number=2;
  7.                 while(count<x){
  8.                         boolean isPrime=true;
  9.                         for(int i=2;i<=number/2;i++){
  10.                                 if(number%i==0){
  11.                                         isPrime=false;
  12.                                         /;

  13.                         }
  14.                 }
  15.                  if(isPrime){
  16.                         count++;
  17.                         System.out.print(number+"\t");
  18.                         if(count%y==0){
  19.                                 System.out.println();
  20.                         }
  21.                 }
  22.                 number++;
  23.         }
  24. }
  25. }
复制代码

2 个回复

倒序浏览
加油,加油,加油!
回复 使用道具 举报
什么是素数...???
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马