#include <stdio.h> int main() { int a, b, c; while (scanf("%d %d %d", &a, &b, &c) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to // printf("%d\n", a + b); if (a > b) { switch ((a > c) - (c > b)) { case 1: printf("The maximu...