#23785:


leo931101 (℗™§⁕⁂‱⁇‽⁜௹﷼₯ɸʬ)

學校 : 國立嘉義高級中學
編號 : 126498
來源 : [163.27.3.92]
最後登入時間 :
2020-09-13 18:36:54
d237. 質數合 -- Project Euler | From: [163.27.3.90] | 發表日期 : 2020-12-17 09:17

#include <iostream>

#include<cmath>

using namespace std;

 

 

 

 

 

    int f(int n)

    {

        for(int i=3;i<=sqrt(n);i+=2)

        {

            if(n%i==0)

            {

                return 0;

                break;

            }

        }

        return 1;

    }

 

 int main()

 {

     long long a=0;

     for(int i=3;i<2000000;i+=2)

     {

         if(f(i))

            a+=i;

     }

     cout<<a+2<<endl;

     return 0;

 }

 
ZeroJudge Forum