原问题
单点时限: 2.0 sec
内存限制: 256 MB
Modify 21Lab01_02.c to print the maximum of three integers inputted.
输入格式
输入 3 个整数
输出格式
输出最大数
样例
input
10 9 8
output
Enter a,b and c:Max=10
分析与代码
依旧没什么好说的
#include <stdio.h>
int main(void)
{
int a, b, c, max;
printf("Enter a,b and c:");
scanf("%d %d %d", &a, &b, &c);
if(a >= b){
max = a;
}else{
max = b;
}
if(c >= max){
max = c;
}
printf("Max=%d", max);
return 0;
}
结果
(case点太多不想截图)