#13845: C++用遞迴標準解答 僅供參考 別抄


22505031 (今晚打老虎)

學校 : 國立嘉義高級中學
編號 : 68291
來源 : [140.113.236.123]
最後登入時間 :
2024-10-16 22:09:52
d237. 質數合 -- Project Euler | From: [114.47.227.11] | 發表日期 : 2018-05-07 22:18

#include <iostream>
#include <cstring>
#include <sstream>
#include <cmath>
#include <string>
#include<cstdio>
using namespace std;
bool a(int n)
{
     bool as=true;
     if(n==1)
         {
            as=false;
         }
     for(int i=2;i<=sqrt(n);i++)
        {
            if(n%i==0)
            {
                as=false;
                break;
            }
        }
    return as;
}

int main()
{
    int c=2,d=2000000;

       long long int k=0;
        for(int i=c;i<=d;i++)
        {
            if(a(i))
               {
                 k+=i;
               }
        }

       cout<<k<<endl;

    return 0;
}
 
#15791: Re:C++用遞迴標準解答 僅供參考 別抄


willis2014 (//我凍齡)

學校 : 臺北市私立延平高級中學
編號 : 60208
來源 : [123.192.203.15]
最後登入時間 :
2024-10-03 11:20:11
d237. 質數合 -- Project Euler | From: [223.137.157.151] | 發表日期 : 2018-10-31 22:52

#include 
#include 
#include 
#include 
#include 
#include
using namespace std;
bool a(int n)
{
     bool as=true;
     if(n==1)
         {
            as=false;
    (略)
這有遞迴???




 
ZeroJudge Forum