用c++编写顺序表求素数,这个请教高手啊

请发到邮箱179925766@qq.com... 请发到邮箱179925766@qq.com 展开
 我来答
灰色8酷
2011-03-20 · TA获得超过306个赞
知道小有建树答主
回答量:414
采纳率:100%
帮助的人:379万
展开全部
#include <iostream>
#include <math.h>
#define N 1000
using namespace std;
int a[N];

int main(){
a[0]=2;
int length=1;
bool nis=false;
for(int i=3;i<N*7;i++){
nis=false;
for(int tt=0;a[tt]<=sqrt(i);tt++)if(i%a[tt]==0){
nis=true;
break;
}
if(nis==false){
//cout<<i<<endl;
a[length]=i;
length++;
}
}
for(int i=1;i<length+1;i++){
for(;i%10!=0;i++)cout<<a[i-1]<<" ";
cout<<endl;
}
cout<<"共有"<<length<<"个素数"<<endl;
system("pause");
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式