4 solutions
- 1
Information
- ID
- 639
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 2
- Tags
- # Submissions
- 30
- Accepted
- 22
- Uploaded By
#include<iostream>
using namespace std;
int main(){
cout<<11<<endl;
cout<<13<<endl;
cout<<17<<endl;
cout<<31<<endl;
cout<<37<<endl;
cout<<71<<endl;
cout<<73<<endl;
cout<<79<<endl;
cout<<97<<endl;
return 0;
}//打表
#include<iostream>
using namespace std;
int main(){
cout<<11<<endl<<13<<endl<<17<<endl<<31<<endl<<37<<endl<<71<<endl<<73<<endl<<79<<endl<<97<<endl;
}
#include<iostream>
using namespace std;
int main(){
cout<<11<<endl;
cout<<13<<endl;
cout<<17<<endl;
cout<<31<<endl;
cout<<37<<endl;
cout<<71<<endl;
cout<<73<<endl;
cout<<79<<endl;
cout<<97<<endl;
}
By signing up a ZXOJ universal account, you can submit code and join discussions in all online judging services provided by us.