求这几个c语言的程序 1、 编写一个函数,使其向主函数返回3个整数参数中的最大值,并在主函数中输出
求这几个c语言的程序 1、 编写一个函数,使其向主函数返回3个整数参数中的最大值,并在主函数中输出
日期:2016-05-29 19:33:37 人气:1
#include
int Max(int x,int y,int z);
int main()
{
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
int max=Max(a,b,c);
printf("%d",max);
return 0;
}
int Max(int x,int y,int z)
{
int m;
if(x<y)
m=y;
else
m=x;
if(m<z)
m=z;