编写的C程序如下:
#include
{ int a, b, c, max;
scanf("%d %d %d", &a, &b, &c); //输入3个数字
if (a > b)
{ if (a > c) max = a; else
max = c;
} else
{ if (b > c) //判断谁是最大值
max = b;
else max = c;
} printf("Max=%d\n", max);
return 0; } //输出最大值
扩展资料:
使用其他的方法输出a,b,c三个值得最大值:
#include
void main()
{ int a,b,c,max;
printf("Please input number:\n");
scanf("%d,%d.%d",&a,&b,&c);
max=a;
if(b>=max)
max=b;
if(c>max)
max=c;
printf("The bigest number is \n",max);
}
#include