Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145548 伊建润 输出较大的数 C++ Accepted 0 MS 268 KB 223 2026-01-25 16:23:27

Tests(1/1):


Code:

#include <iostream> int main() { int a, b; std::cin >> a; std::getchar(); // 读取逗号 std::cin >> b; int max = (a > b)? a : b; std::cout << "max=" << max << std::endl; return 0; }