下列函数实现用递归方法求n阶勒让德多项式的值,递归公式为:doubleP(intn,doublex){doublec;if(n==0)c=1;elseif(n==1)c=x;elsec=___;return(___);} 相关知识点: 试题来源: 解析 第一空: ((2*n-1)*x-p(n-1,x)-(n-1)*p(n-2,x)/n 第二空: c 反馈 收藏 ...
编一程序,从键盘上输入x和n的值,使用递归函数求p(x)的值。相关知识点: 试题来源: 解析 解答: 该程序可以由递归函数的形式直接编写。 #include float p( float x,int n ); void main() { int n; float x; cout << "please input x and n:"; cin >> x >> n; cout << "p(" << x <...
已知勒让德多项式为编一程序,从键盘上输入x和n的值,使用递归函数求p (x)的值。#include using namespace std;int main(){int x,n;float p(int,int);cout<<"input n & x:";cin>>n>>x;cout<<"n="< 相关知识点: 试题来源: 解析反馈 收藏 ...