记录编号 534048 评测结果 AAAAA
题目名称 计算f(x,n) 最终得分 100
用户昵称 Gravatar小朋友。 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2019-07-02 11:31:00 内存使用 13.66 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
double x;  
int n;
double  fn(int i)
{
   if(i==0)return x;
   return sqrt(i+fn(i-1));
}
int main ()
{   
    freopen("fxn.in","r",stdin);
    freopen("fxn.out","w",stdout);
    cin>>x>>n;    
    cout<<setiosflags(ios::fixed)<<setprecision(2)<<fn(n);
    return 0;
}