/*直接按照给出的公式写就是了*/
float Pn(int n,float x){ if(n==0) { return(1); } if(n==1) { return(x); } else return(((2*n-1)*x-Pn(n-1,x)-(n-1)*Pn(n-2,x))/n);}