#include<stdio.h>
int main()
{
void hehe(int a,int b,int c);
int d=0;
int e=0;
int f=0;
printf("请输入3个整数:(并以空格间隔)");
scanf("%d %d %d",&d,&e,&f);
hehe(d,e,f);
return 0;
}
void hehe(int a,int b,int c)
{
if(a>b && a>c)
printf("最大数是:%d",a);
if(b>c && b>a)
printf("最大数是: %d",b);
if(c>b && c>a)
printf("最大数是:%d",c);
}
int main()
{
void hehe(int a,int b,int c);
int d=0;
int e=0;
int f=0;
printf("请输入3个整数:(并以空格间隔)");
scanf("%d %d %d",&d,&e,&f);
hehe(d,e,f);
return 0;
}
void hehe(int a,int b,int c)
{
if(a>b && a>c)
printf("最大数是:%d",a);
if(b>c && b>a)
printf("最大数是: %d",b);
if(c>b && c>a)
printf("最大数是:%d",c);
}