编程问题4
谭爷爷的《C程序设计》中的P12页第6题#include<stdio.h>
main()
{
int a,b,c,d;
printf("please key in 3 number for checking:\n");
scanf("%d,%d,%d",a,b,c);
d=max(a,b,c);
printf("the max one is%d",d);
getch();
}
int max(int x, int y, int z)
{int w;
if (x>y)
if (z>x) w=z;
else w=x;
else
if (z>y) w=y;
else w=z;
return(w);
}
我想了一天了,也没有正确答案。郁闷,不好意思,很弱智的问题,嬉笑之余还请不吝赐教。谢谢。