H多项式
2023-07-24 18:41:11
发布于:浙江
9阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
double h(double n,double x){
if(n0) return 1;
else if(n1) return x2;
else return 2xh(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;
}
这里空空如也
有帮助,赞一个