| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143032 | 冯祥瑞 | 04倒序输出五位数 | C++ | Accepted | 0 MS | 272 KB | 273 | 2026-01-11 17:52:18 |
#include <iostream> #include <string> #include <algorithm> int main() { std::string num_str; std::cin >> num_str; // 反转字符串 std::reverse(num_str.begin(), num_str.end()); std::cout << num_str << std::endl; return 0; }