注册 登录
编程论坛 VC++/MFC

请教这道程序为什么是错的

baby俊 发布于 2011-03-30 21:39, 485 次点击
#include<iostream>
using namespace std;
double pow(double x,int y);
int main()
{
    double x1,x2;
    cout<<"请输入一个数:";
    cin>>x1;
    x2=x1-(pow(x1,3)-3*x1-1)/(3*pow(x1,2)-3);
    cout<<"x2="<<x2;
    return 0;
}



请教这个程序的错误应该怎么解决。。谢谢
2 回复
#2
yfleee2011-03-30 22:35
大哥,pow是库文件里面的不用声明了,你那里声明了有没有定义,当然有错
#3
baby俊2011-03-31 12:48
哦 。 哦。。 哦知道了。。才刚刚接触,,有些地方还不知道,,见谅哈。。谢谢了
1