筛选法找素数

Posted XuGuobao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了筛选法找素数相关的知识,希望对你有一定的参考价值。

 1 public class Test01 {
 2 
 3     public static void main(String[] args) {
 4         int[] a = new int[101];
 5         int i,j;
 6         for(i=1;i<101;i++){
 7             a[i] = i;
 8         }
 9         
10         for(i=2;i<101;i++){
11             if(a[i] != 0){
12                 for(j=i+i;j<101;){
13                     if(j%i == 0){
14                         a[j]=0;
15                     }
16                     j = j+i;
17                 }
18             }
19         }
20         for(i=2;i<101;i++){
21             if(a[i] != 0){
22                 System.out.println(i);
23             }
24         }
25     }
26 
27 }

 

以上是关于筛选法找素数的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2161 Primes (素数筛选法)

素数筛选 - bailian 4138:质数的和与积

素数筛选和合数分解

筛选 Eratosthenes 素数高达一百万 c++

Eratosthenes筛选法构造1-n 素数表

素数筛选--hdu1262