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

素数打表

时间:2014-07-18 13:31:49      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   

 1 #include<iostream>
 2 #include<stdio.h>
 3 #include<cstring>
 4 #include<cstdlib>
 5 #include<bitset>
 6 using namespace std;
 7 const int maxn = 1e6;
 8 bitset<maxn> prime;
 9 
10 void init()
11 {
12     int i,j;
13     prime.set();
14     for(i=4;i<=maxn;i=i+2)prime[i]=false;
15     for(i=3;(j=i*i)<maxn;i=i+2)
16     {
17         if(prime[i]==false) continue;
18         for(;j<maxn;j=j+i+i)
19             prime[j]=false;
20     }
21 }
22 int main()
23 {
24     init();
25     for(int i=2;i<=100;i++)if(prime[i]==true) printf("%d ",i);
26     return 0;
27 }

素数打表,布布扣,bubuko.com

素数打表

标签:style   blog   color   os   io   for   

原文地址:http://www.cnblogs.com/tom987690183/p/3853017.html

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