帮忙看看这个错误是什么意思~·谢谢
#include "stdafx.h"#define com(a,b) int compare(int a,int b);
int compare(int,int);
int _tmain(int argc, _TCHAR* argv[])
{
int x,y,z,m1,m2;
printf("input three numbers:\n");
scanf("%d%d%d",&x,&y,&z);
m1=com(x,y);
m2=com(m1,z);
printf("the max number is: %d",m2);
return 0;
}
int compare(int a,int b)
{
if(a>b)return(a);
else return(b);
}
它的错误是这样的:
1>c:\documents and settings\administrator\桌面\程序\rtw\rtw\rtw.cpp(13) : error C2062: 意外的类型“int”
1>c:\documents and settings\administrator\桌面\程序\rtw\rtw\rtw.cpp(14) : error C2062: 意外的类型“int”
这是什么意思呢?