小白请教各位高手,以下程序编译正常,连接出错,问题在哪?
#include <stdio.h>void main()
{
int max(int x,int y,int z);
int a,b,c,d;
scanf("%d,%d,%d",&a,&b,&c);
d=max(a,b,c);
printf("max=%d\n",d);
}
int max(int x,int y,int z)
{
int e;
if (x>y)
{ if (y>z)
e=x;
else //(y<z)
{ if (x>z) e=x;
else e=z;
}
}
else //(x<y)
{
if (x>z)
e=y;
else //(x<z)
{ if (y>z)
e=y;
else e=z;
}
return(e);
}
}