xt4-8.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4.  {int x,n;
  5.   float p(int,int);
  6.   cout<<"input n & x:";
  7.   cin>>n>>x;
  8.   cout<<"n="<<n<<",x="<<x<<endl;;
  9.   cout<<"P"<<n<<"(x)="<<p(n,x)<<endl;
  10.   return 0;
  11.  }
  12. float p(int n,int x)
  13.  {if (n==0)
  14.     return(1);
  15.   else if (n==1)
  16.     return(x);
  17.   else
  18.     return(((2*n-1)*x*p((n-1),x)-(n-1)*p((n-2),x))/n);
  19.  }
  20.