码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 编程思想 第三章 3-2

时间:2018-12-02 16:18:35      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   class   code   +=   using   span   max   c++   质数   

#include <iostream>
#include <cmath>    // for sqrt()
using namespace std;

#define MAX 100
//质数
int main()
{
    cout << "2";
    int i;
    int j;
    for (i = 3; i < MAX + 1; i += 2)
    {
        for ( j = 3; j <= sqrt(i); j += 2)
        {
            if (i % j == 0)
            {
                break;
            }
            
        }
        if (j > sqrt(i))
        {
            cout << i <<  ;
        }
        

    }
    cout << endl;
    system("pause");
    return 0;
}

 

C++ 编程思想 第三章 3-2

标签:style   class   code   +=   using   span   max   c++   质数   

原文地址:https://www.cnblogs.com/jingchu/p/10053656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!