Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147482 | dadsafdfe | 复杂算式 | C++ | 通过 | 100 | 0 MS | 252 KB | 242 | 2024-05-18 15:33:53 |
#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<<fixed<<setprecision(2)<<f(x,n); return 0; }