| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 137642 | 丁陆永新 | 04四位数移位 | C++ | Wrong Answer | 2 MS | 268 KB | 181 | 2025-11-21 20:32:13 |
#include<iostream> using namespace std; int main() { int a,b,c,d,t; cin>>a>>b>>c>>d; t=a; a=d; d=c; c=b; b=t; cout<<a<<" "<<b<<" "<<c<<" "<<d<<" "; return 0; }
------Input------
6234
------Answer-----
4623
------Your output-----
32766 6234 0 136598888