问题:
[填空题]
请将以下程序中的函数声明语句补充完整。
#include <stdio.h>
____ ___________;
main()
{ int x,y;
scanf("%d%d",&x,&y);
printf("%d\n",max(x,y));
}
int max(int a,int b)
{ return (a>b?a:b);}
请将以下程序中的函数声明语句补充完整。
#include <stdio.h>
____ ___________;
main()
{ int x,y;
scanf("%d%d",&x,&y);
printf("%d\n",max(x,y));
}
int max(int a,int b)
{ return (a>b?a:b);}
Copyright © 2024 www.daanwo.com All Rights Reserved |