1013 数素数 (20分)
Posted qrain
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1013 数素数 (20分)相关的知识,希望对你有一定的参考价值。
#include <iostream> #include <string.h> #include <cmath> using namespace std; int main() { int m,n,count=0,w=0,c = 0; cin>>m>>n; for(int i=2;i<500000;i++) { w=0; for(int j=2;j<=sqrt(i);j++) { if(i%j==0) { w=1; break; } } if(w==0) { count++; if(count>=m&&count<=n) { cout<<i; c++; if(c%10==0) cout<<endl; else if(c%10!=0&&count<n) cout<<" "; } } } return 0; }
以上是关于1013 数素数 (20分)的主要内容,如果未能解决你的问题,请参考以下文章