我用的式dev-c++ 明明没有错误的程序他总是显示出错是怎么回事
比如说这段程序#include<iostream.h>#include<conio.h>intmain(){inta,b,c;cin>>a>>b;c=Abs(a,b);c...
比如说这段程序
#include <iostream.h>
#include <conio.h>
int main()
{int a,b,c;
cin >> a >> b;
c=Abs(a,b);
cout << c << "\n"
getchar();
return 0;
}
int Abs(int a ,int b)
{if(a>b)
return a;
return b; }
下面显示的错误是
7 C:\Dev-Cpp\我的c++\返回最大值.cpp `Abs' undeclared (first use this function)
9 C:\Dev-Cpp\我的c++\返回最大值.cpp expected `;' before "getchar"
14 C:\Dev-Cpp\我的c++\返回最大值.cpp `int Abs(int, int)' used prior to declaration 展开
#include <iostream.h>
#include <conio.h>
int main()
{int a,b,c;
cin >> a >> b;
c=Abs(a,b);
cout << c << "\n"
getchar();
return 0;
}
int Abs(int a ,int b)
{if(a>b)
return a;
return b; }
下面显示的错误是
7 C:\Dev-Cpp\我的c++\返回最大值.cpp `Abs' undeclared (first use this function)
9 C:\Dev-Cpp\我的c++\返回最大值.cpp expected `;' before "getchar"
14 C:\Dev-Cpp\我的c++\返回最大值.cpp `int Abs(int, int)' used prior to declaration 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询