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

【PAT】B1013 数素数(20 分)

时间:2018-08-18 19:48:52      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:hashtable   return   clu   换行   for   scan   ++   ace   pre   

#include<cstdio>
using namespace std;

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 数素数(20 分)

标签:hashtable   return   clu   换行   for   scan   ++   ace   pre   

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

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