tj
2024-10-14 19:33:12
发布于:上海
0阅读
0回复
0点赞
#include<iostream>
#include<iomanip>
using namespace std;
double h(double n,double x){
if(n==0)return 1;
else if(n==1)return 2*x;
else return 2*x*h(n-1,x)-2*(n-1)*h(n-2,x);
}
int main(){
double n,x;
cin>>n>>x;
cout<<fixed<<setprecision(2)<<h(n,x);
return 0;
}
这里空空如也
有帮助,赞一个