| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143002 | 李昊阳 | 04四位数移位 | C++ | Compile Error | 0 MS | 0 KB | 345 | 2026-01-11 17:42:10 |
#include <iostream> using namespace std; int main() { int n; cin >> n; int thousand = n / 1000; int hundred = (n / 100) % 10; int ten = (n / 10) % 10; int unit = n % 10; int result = unit * 1000 + thousand * 100 + hundred * 10 + ten; cout << result << endl; return 0;
Main.cc: In function 'int main()':
Main.cc:18:13: error: expected '}' at end of input
return 0;
^