double f(int x,int n){
if(n==1) return x;
else return -(n-1)*pow(x,n)*f(x,n-1);
}
记得头文件添加 #include "math.h"