Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
154769 熊泊彧 08比较三个数的大小 C++ Accepted 1 MS 272 KB 237 2026-05-30 23:16:02

Tests(10/10):


Code:

#include <iostream> #include <algorithm> // 调用max函数需要此头文件 using namespace std; int main() { int a, b, c; cin >> a >> b >> c; int res = max(a, max(b, c)); cout << res << endl; return 0; }