问各位大佬个题
/*定义函数max(int a,int b),比较整数a与b的大小并输出较大值。
main()函数中从键盘输入整数a和b,调用函数max()并输出结果。
*/
#include<stdio.h>
int max(int a,int b)
{
if(a>b)
return a;
else
return b;
}
void 【4】
{
int a, b;
printf("请输入2个整数:\n");
scanf("%d%d", &a,&b);
printf("较大值:%d\n", max(a,b));
}
4这个位置代码应该是什么呀?求大佬解惑
搜索
复制