欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

习题 5.1 用筛选法求100之内的素数。

程序员文章站 2024-03-15 16:06:42
...

C++程序设计(第三版) 谭浩强 习题5.1 个人设计

习题 5.1 用筛选法求100之内的素数。

代码块:

#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
    int n[100], i, j, c=0;
    for (i=0; i<100; n[i++]=i+1);
    for (i=0; i<100; i++){
        for(j=2; j<n[i]&&(n[i]%j!=0); j++);
        if (j==n[i]){
            c++;
            cout<<setw(4)<<n[i]<<' ';
            if (c%5==0) cout<<endl;
        }
    }
    system("pause");
    return 0;
}
相关标签: C++