黑马程序员技术交流社区

标题: 求某个区间内的素数 [打印本页]

作者: Mr.Wu    时间: 2016-6-7 18:09
标题: 求某个区间内的素数
  1. import java.util.Scanner;
  2. class Demo2_1 {
  3.         public static void main(String[] args) {
  4.                 Scanner sc = new Scanner(System.in);
  5.                 System.out.println("请输入你要检测素数的开始值:");
  6.                 int start = sc.nextInt();
  7.                 System.out.println("请输入你要检测素数的结束值:");
  8.                 int end = sc.nextInt();

  9.                 int count = 0;
  10.                 for (int i=start; i<end; ++i){
  11.                         if (isSuShu(i)) {
  12.                                 System.out.println(i);
  13.                                 count++;
  14.                         }
  15.                 }
  16.                 System.out.println("从" + start + "到" + end + "共有" + count +"个素数!");
  17.         }

  18.         public static boolean isSuShu(int n) {
  19.                 boolean flag = false;
  20.                 if (n == 1) {
  21.                         flag = false;
  22.                 }else {
  23.                         for (int i=2; i<n; ++i){
  24.                                 if (n % i == 0) {
  25.                                         flag = false;
  26.                                         break;
  27.                                 }else {
  28.                                         flag = true;
  29.                                 }
  30.                         }
  31.                 }
  32.                 return flag;
  33.         }
  34. }
复制代码

刚出炉的。分享一下:


作者: dreamhunter    时间: 2016-6-7 22:10
不错不错




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2