再求f(x,n)
链接:http://ybt.ssoier.cn:8088/problem_show.php?pid=1167
【题目描述】
已知
用递归函数求解。
【输入】
第一数是x的值,第二个数是n的值。
【输出】
函数值。
【输入样例】
1 2
【输出样例】
0.40
#include <iostream> #include<stdio.h> #include<math.h> using namespace std; double h(int x,int n){ if(n==1) return 1.0*x/(1+x); return 1.0*x/(n+h(x,n-1)); } int main(){ double x,n; cin>>x>>n; printf("%.2f",h(x,n)); }