| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154671 | 侯雨冉 | 04四位数移位 | C++ | Wrong Answer | 1 MS | 268 KB | 220 | 2026-05-30 17:41:29 |
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; int c; int d; int e; cin>>a; a==b*1000+c*100+d*10+e; cout<<e*1000+b*100+c*10+d<<endl; return 0; }
------Input------
6234
------Answer-----
4623
------Your output-----
0