-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path29ToNPrime1163.cpp
52 lines (50 loc) · 940 Bytes
/
29ToNPrime1163.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include<iostream>
using namespace std;
#define N 10000
bool mark[N+1];
int prime_size=0;
int is_prime[N];
void init()
{
for(int i=0;i<=N;i++)
mark[i]=false;
for(int j=2;j<=N;j++)
{
if(mark[j]==true)
continue;
else
{
is_prime[prime_size++]=j;
for(int k=j*j;k<=N;k+=j)
{
mark[k]=true;
}
}
}
}
int main()
{
init();
int n;
while(cin>>n)
{
bool flag = false;
for(int i=0;i<prime_size;i++)
{
if(is_prime[i]<n&&is_prime[i]%10==1)
{
if(flag==true)
cout<<" "<<is_prime[i];
else
{
flag=true;
cout<<is_prime[i];
}
}
}
if(flag==false)
cout<<"-1";
cout<<endl;
}
return 0;
}