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

筛法求素数

时间:2019-02-02 12:54:13      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:bsp   prim   public   span   color   code   +=   filter   ons   

 1 using System;
 2 public class PrimeFilter
 3 {
 4     public static void Main( string [] args )
 5     {
 6         int N = 100;
 7         bool [] a = new bool[N+1];//bool数组
 8 
 9         for( int i=2; i<=N; i++ ) 
10             a[i]=true;
11 
12         for( int i=2; i<N; i++ )
13         {
14             if(a[i]){
15                 for( int j=i*2; j<=N; j+=i )
16                     a[j]=false;
17             }            
18         }
19 
20         for( int i=2; i<=N; i++) 
21             if( a[i] ) Console.Write( i + " " );
22 
23         Console.ReadLine();//暂停
24     }
25 }

 

筛法求素数

标签:bsp   prim   public   span   color   code   +=   filter   ons   

原文地址:https://www.cnblogs.com/GoldenEllipsis/p/10348057.html

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