Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
26906 | 汤书哲 | 求解函数 | C++ | Accepted | 2 MS | 840 KB | 259 | 2022-05-27 17:09:42 |
#include<iostream> #include<cstdio> using namespace std; double f(double x,double n) { if(n==1) { return x/(1+x); } else { return x/(n+f(x,n-1)); } } int main() { double x,n; cin>>x>>n; printf("%.2lf",f(x,n)); return 0; }