Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147677 | 林汐 | 复杂算式 | C++ | 通过 | 100 | 0 MS | 248 KB | 232 | 2024-05-18 17:35:34 |
#include <bits/stdc++.h> using namespace std; double f(double x,int n){ if(n==1)return sqrt(1+x); return sqrt(n+f(x,n-1));} int main() {double x;int n; cin>>x>>n; cout<<setprecision(2)<<fixed<<f(x,n); return 0; }