Pro.ID1013 Title求最大值(分支结构) Title链接http://10.20.2.8/oj/exercise/problem?problem_id=1013 AC2530 Submit7442 Ratio34.00% 时间&空间限制描述读入三个整数a、b和c,输出最大的那个(the largest one)。 输入测试数据有多个,一个占一行,每行是三个整数a、b和c,空格隔开。 输出Description 读入三个整数a、b和c,输出最大的那个(the largest one)。 Input 测试数据有多个,一个占一行,每行是三个整数a、b和c,空格隔开。 Output 为每组测试数据,输出一行:a、b、c三者中的最大值。 For each test case, output the largest one of a, b and c in one line. Sample Input 3 9 6 Sample Output 9 Hint 处理多组测试用例,可用 while ( scanf( "%d%d%d", &a, &b, &c ) != EOF ) // 未到文件结束 或 while ( scanf( "%d%d%d", &a, &b, &c ) == 3 ) // 能够读入3个数 Author 样例输入3 9 6 样例输出9 提示处理多组测试用例,可用 while ( scanf( "%d%d%d", &a, &b, &c ) != EOF ) // 未到文件结束 或 while ( scanf( "%d%d%d", &a, &b, &c ) == 3 ) // 能够读入3个数 作者 |