我下面这段代码是要输出c=px(n)的,函数px()里面return c,在c的表达式里面有字符x,但是在输出的时候会自动编译成120??请问怎么在表达式中显示字符 x?
double px(int n) {
double c;
if (n == 0)
c = 1;
if (n == 1)
c ='x';
if(n>1)
c = ((2 * n - 1)*'x'*px(n - 1) - (n - 1)*px(n - 2)) / n;
return c;
}
int main()
{
int n;
while (1) {
cout << "please enter n:" << endl;
cin >> n;
cout << "c=:" << px(n) << endl;
}
return 0;
}
繁星淼淼
Smart猫小萌
相关分类