Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147363 | 黄子轩 | 复杂算式 | C++ | 通过 | 100 | 0 MS | 256 KB | 269 | 2024-05-18 14:56:53 |
#include<iostream> #include<cstdio> #include<cmath> using namespace std; float f(float x,int n){ if(n==1){ return(sqrt(n+x)); } else{ return(sqrt(n+f(x,n-1))); } } int main(){ float a; int b; cin>>a>>b; float j=f(a,b); printf("%.2f",j); }