刚学C的新手提问下!
#include "stdio.h"#include "conio.h"
int max(int x,int y);
{int z;
if(x>y)z=x;
else z=y;
return(z);
}
void main()
{int a,b,c;
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
}
getch();
为什么编译不能通过? 帮我看看!
[此贴子已经被作者于2007-10-23 6:31:46编辑过]