#include void main() { int max( int x,int y); int a,b,c; scanf("%d,%d",&a,&b); c=max(a,b);}程序不完整,只有max函数的声明,没有max的函数体!