| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145688 | 伊建润 | 08比较三个数的大小 | C++ | Accepted | 0 MS | 276 KB | 175 | 2026-01-25 18:05:49 |
#include <iostream> #include <algorithm> int main() { int a, b, c; std::cin >> a >> b >> c; std::cout << std::max({a, b, c}) << std::endl; return 0; }