用c++编写一个求1000以内的素数及所有素数的个数

日期:2019-05-21 14:49:03 人气:1

用c++编写一个求1000以内的素数及所有素数的个数

#include int main() { cout<<3<<endl; for(int n=5;n<1000;n=n+2) { for(int i=2;i<=n/2;i++ ) { if(n%i==0)break; } if((i-1)==n/2) cout<<n<<endl; } return 0; } 判断素数,是学习c、c++必接触的一个算法。 // AnswerIntheInternet.cpp : 定义
    A+
热门评论