本文只供自己学习记录笔记......
vim编写源码:
#include <iostream>
using namespace std;
int main()
{
int m,n,i,count=0;
cout<<"请随机输入一个正整数:";
cin>>n;
for(m=2;m<=n;m++)
{
for(i=2;i<m;i++)
if(m%i==0) break;
if (m==i)
{
cout<<m<<'\t';
count=count+1;
}
}
cout<<'\n'<<"一共有质数:"<<count<<"个"<<endl;
return 0;
}
[h_pw@localhost learn_myself]$ g++ zhishu.cpp -o zhishu
[h_pw@localhost learn_myself]$ ./zhishu
请随机输入一个正整数:100
2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
一共有质数:25个
[h_pw@localhost learn_myself]$