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

【PAT】B1013 数素数

时间:2018-10-19 00:10:59      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:return   int   筛选   ++   不能   include   als   空格   hash   

用埃氏筛筛出素数表(节约时间)
素数的筛选范围不能小了,一定要够大

#include<stdio.h>

int main(){
    int N,M;scanf("%d %d",&M,&N);
    int pnum=0,num=0;
    bool hashtable[1000000]={0};
    for(int i=2;i<1000000;i++){
        if(hashtable[i]==false){//如果没有被筛去
            pnum++;
            if(pnum>=M&&pnum<=N){//空格,换行
                num++;
                if(num%10!=1)printf(" ");
                printf("%d",i);
                if(num%10==0)printf("\n");
            }
            for(int j=i+i;j<1000000;j+=i){
                hashtable[j]=true;
            }
        }
    }
    return 0;
}

【PAT】B1013 数素数

标签:return   int   筛选   ++   不能   include   als   空格   hash   

原文地址:https://www.cnblogs.com/hebust/p/9813316.html

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