弘一


私信TA

用户名:hongyi12

访问量:878

签 名:

等  级
排  名 2156
经  验 2428
参赛次数 0
文章发表 12
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码

#include

#include

#include

using namespace std;

int sum01(int n){

    if(n==0||n==1){

        return n;

    }else{

        return sum01(n-1)+n;

    }

}

int sum02(int m){

if(m==0||m==1){

return m;

}

else{

return (sum02(m-1)+m*m);

}

}

double sum03(int c){

    if(c==0||c==1){

        return c;

    }else{

        return (sum03(c-1)+1.0/c);

    }

}

int main(){

    int a,b,c;

    cin>>a>>b>>c;

//    cin>>a>>b>>c;

//    double sum4=sum01(a)+sum02(b)+sum03(c);

//    cout<<sum4<<endl;

    double t=sum03(c);

    int t1=sum01(a);

    int t2=sum02(b);

    double  sum04=t+t1+t2;

    cout<<setprecision(2)<<std::fixed<<sum04<<endl;

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »