码迷,mamicode.com
首页 > 其他好文 > 详细

利用筛法求质数

时间:2016-06-08 20:20:32      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

 1 package algorithm;
 2 //转载请注明
 3 public class FilterPrime {
 4     public static void filterPrime(int n) {
 5         boolean[] isPrimes = new boolean[n+1];
 6         for(int i=2;i<=n;i++){
 7             isPrimes[i]=true;
 8         }
 9         isPrimes[2]=true;
10         for(int j=2;j<=n;j++){
11             if(isPrimes[j]==true){
12                 for(int m=2;j*m<=n;m++){
13                     isPrimes[j*m]=false;
14                 }
15             }
16         }
17         for(int k=2;k<=n;k++){
18             if(isPrimes[k]==true){
19                 System.out.println(k+"是素数");
20             }
21         }
22     }
23     
24     public static void main(String[] args) {
25         filterPrime(23);
26     }
27 }

 

利用筛法求质数

标签:

原文地址:http://www.cnblogs.com/yqy921/p/5571143.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!