C语言问题,定义函数的时候,出现了这样的错误,请问哪里出错了??double f(int n,double x,double a[])
{
double f=0;
int i;
for(i=0;i<=n;i++)
{
f=f+a[i]*x^(n-i);
}
return(f);
}
错误 1 error C2296: “^”: 非法,左操作数包含“double”类型 f:\visual studio\test1\test1\test1_1.cpp 7 test1
谢谢,你回答的更好,但是我得把先回答的采纳了,真对不起😊
谢谢
本回答被提问者采纳