Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147436 | 刘子隽bylz | 复杂算式 | C++ | 通过 | 100 | 0 MS | 244 KB | 219 | 2024-05-18 15:16:20 |
#include<bits/stdc++.h> using namespace std; double f(double x,double n){ if(n==1) return sqrt(x+1); else return sqrt(n+f(x,n-1)); } int main(){ double a,b; cin>>a>>b; printf("%.2f",f(a,b)); return 0; }