三个数求最大值,帮看看哪里有问题。组建时提示错误1.
我找了很长时间,没找出来问题。#include <stdio.h>
int main()
{
int max(int x,int y); //声明调用函数
int a,b,c,d; //定义变量
scanf("%d,%d,%d",&a,&b,&c); //输入函数
d=max(max(a,b),c); //调用max函数
printf("max=%d\n",d); //输出函数
return 0;
} //主体函数结束
int max(int x,int y) //定义max函数
{
int z; //定义变量
if(x>y)z=x;
else z=y;
return(z);
}
我找了很长时间,没找出来问题。
--------------------Configuration: text - Win32 Debug--------------------
Linking...
text001.obj : error LNK2005: _main already defined in text.obj
text001.obj : error LNK2005: "int __cdecl max(int,int)" (?max@@YAHHH@Z) already defined in text.obj
eeese.obj : error LNK2005: _main already defined in text.obj
eeese.obj : error LNK2005: "int __cdecl max(int,int)" (?max@@YAHHH@Z) already defined in text.obj
Debug/text.exe : fatal error LNK1169: one or more multiply defined symbols found
执行 link.exe 时出错.
text.exe - 1 error(s), 0 warning(s)
[ 本帖最后由 tydhws 于 2012-6-20 18:34 编辑 ]