标签: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;
}
标签:hashtable return clu 换行 for scan ++ ace pre
原文地址:https://www.cnblogs.com/hebust/p/9498117.html