Description:编一程序,将3个整数a、b、c由键盘输入,输出其中的最大者
Input
输入仅一行,输入3个整数
Output
输出仅一行,输出3个数中的最大值
Sample Input
3 2 6
Sample Output
max=6
#include <stdio.h>
#include <math.h>
int main()
{
int a,b,c,t;
printf("请输入三个整数:\n");
scanf("%d,%d,%d",&a,&b,&c);
if(a<b)
a=b;
if(a<c)
a=c;
printf("max=%d\n",a);
return 0;
}