#include <stdio.h>
#include <stdlib.h>
int max(int x,int y,int z);
int main()
{
int a,b,c;
printf("下面请输入三个整数比较一下大小:\n");
scanf("%d%d%d",&a,&b,&c);
printf("两个整数比较完毕最大的数是:%d",max(a,b,c));
return 0;
}
int max(int x,int y,int z)
{
if(x>y){
if(x>z){
return x;
}
else{
return z;
}
}
else
{
if(y>z)
{
return y;
}
else
{
return z;
}
}
}
12-04
2333
12-30
2516
11-29
2383