递归练习:再求f(x,n) - NOTEBOOK
递归练习:再求f(x,n)
C++Posted on 2023-08-18
摘要 : 用递归函数求解。
用递归函数求解。
❱ 输入描述
第一数是x的值,第二个数是n的值。x是小数,n是整数
❱ 输出描述:
函数值,保留两位小数。
❱ 用例输入
1 2
❱ 用例输出
0.40
#include <iostream>
#include <iomanip>
using namespace std;
double f(double x,double n){
if(n==1){
return x/(1+x);
}
return x/(n+f(x,n-1));
}
int main(){
double x,n;
cin>>x>>n;
cout << fixed<<setprecision(2);
cout<<f(x,n);
return 0;
}