Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
313459 方相宜 【C1-7】两数比大小 C++ 通过 100 0 MS 256 KB 222 2025-03-21 21:38:28

Tests(7/7):


#include <iostream> int main() { int a, b; std::cin >> a >> b; if (a > b) { std::cout<< a << std::endl; } else if (a < b) { std::cout<<b<< std::endl; } return 0; }


测评信息: