c语言(函数部分)
发布网友
发布时间:2022-04-29 20:26
我来回答
共2个回答
热心网友
时间:2022-06-22 09:41
没有错误啊
#include <stdio.h>
int max(int a,int b)
{
if(a>b)return a;
else return b;
}
void main()
{
int max(int a,int b);
int x,y,z;
printf("input two numbers:\n");
scanf("%d%d",&x,&y);
z=max(x,y);
printf("maxmum=%d\n",z);
}
下面是VC下运行的结果:
input two numbers:
6
9
maxmum=9
Press any key to continue
热心网友
时间:2022-06-22 09:41
顶部加
#include <stdio.h>