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

筛法求素数

时间:2017-03-11 22:00:06      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:ati   static   rgs   false   int   logs   筛法求素数   pre   style   

 1 using System;
 2 public class PrimeFilter{
 3     public static void Main( string [] args ){
 4         int N = 100;
 5         bool [] a = new bool[N+1];
 6         for( int i=2; i<=N; i++ ) a[i]=true;
 7   
 8         for( int i=2; i<N; i++ )
 9         {
10             if(a[i]) for( int j=i*2; j<=N; j+=i )
11                 a[j]=false;
12         }
13   
14         for( int i=2; i<=N; i++) 
15             if( a[i] ) Console.Write( i + " " );
16     }
17 }

 

筛法求素数

标签:ati   static   rgs   false   int   logs   筛法求素数   pre   style   

原文地址:http://www.cnblogs.com/xyzyj/p/6536163.html

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