标签:span alt class stdio.h 正整数 print gif iostream include
用递归的方法求Hermite多项式的值
对给定的x和正整数n,求多项式的值。
给定的n和正整数x。
多项式的值。
1 2
4.00
#include <iostream> #include<stdio.h> using namespace std; double h(int n,int x){ if(n==0) return 1; if(n==1)return 2.0*x; return 1.0*(2*x*h(n-1,x)-2*(n-1)*h(n-2,x)); } int main(){ int x,n; cin>>n>>x; printf("%.2f",h(n,x)); }
标签:span alt class stdio.h 正整数 print gif iostream include
原文地址:http://www.cnblogs.com/EdSheeran/p/7327041.html