码迷,mamicode.com
首页 > 其他好文 > 详细

A-J

时间:2021-01-05 10:58:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rgb   printf   alt   namespace   iostream   size   oid   space   str   

技术图片

 

 

#include <iostream>

#include <cstdio>

#include <cmath>

using namespace std;

int b;

double a,s;

void fun(double x,int d)//引入递归深度

{

    if(d==b) return;

    s=s+x;

    fun(sqrt(x),d+1);

}

int main()

{

    while(scanf("%lf%d",&a,&b)!=EOF)

    {

        fun(a,0); //注意这里填0

        printf("%.2lf\n",s);

        s=0;

    }

    return 0;

}

A-J

标签:rgb   printf   alt   namespace   iostream   size   oid   space   str   

原文地址:https://www.cnblogs.com/Hello-world-hello-lazy/p/14220281.html

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