标签:log 查找 string table 空格 max name tab author
5 10 11 0
2 3 5 2 3 5 7 2 3 5 7 11
1 /* 2 Name: NYOJ--187--快速查找素数 3 Copyright: ?2017 日天大帝 4 Author: 日天大帝 5 Date: 29/04/17 15:04 6 Description: 差点忘记这个求素数的方法 7 */ 8 #include<cstring> 9 #include<cstdio> 10 //#include<iostream> 11 const int MAX = 2 * 1e6; 12 char arr[MAX]; 13 int main(){ 14 // ios::sync_with_stdio(false);//加了就超时 15 memset(arr,1,sizeof(arr)); 16 arr[0] = arr[1] = 0; 17 for(int i=2; i<MAX; ++i){ 18 if(arr[i]) 19 for(int j=2*i; j<MAX; j+=i){ 20 arr[j] = 0; 21 } 22 } 23 int n; 24 while(scanf("%d",&n),n){ 25 for(int i=2;i<=n; ++i){ 26 if(arr[i])printf("%d ",i); 27 } 28 printf("\n"); 29 } 30 return 0; 31 }
标签:log 查找 string table 空格 max name tab author
原文地址:http://www.cnblogs.com/rtdd/p/6785359.html