Pro.ID1012 Title找较大的值(分支结构) Title链接http://10.20.2.8/oj/exercise/problem?problem_id=1012 AC2500 Submit4504 Ratio55.51% 时间&空间限制描述读入两个整数(integer) a 和 b,输出较大者的值。 输入测试数据(test data)有多组,一组占一行,每行是两个整数a和b,空格隔开。 输出Description 读入两个整数(integer) a 和 b,输出较大者的值。 Input 测试数据(test data)有多组,一组占一行,每行是两个整数a和b,空格隔开。 Output 输出两者较大者(the bigger one)。一个一行。 Sample Input 3 9 Sample Output 9 Hint 处理多组测试用例,可用 while ( scanf( "%d%d", &a, &b ) != EOF ) // 未到文件结束 或 while ( scanf( "%d%d", &a, &b ) == 2 ) // 能够读入2个数 Author 样例输入3 9 样例输出9 提示处理多组测试用例,可用 while ( scanf( "%d%d", &a, &b ) != EOF ) // 未到文件结束 或 while ( scanf( "%d%d", &a, &b ) == 2 ) // 能够读入2个数 作者 |