| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157505 | 钱炜懿 | 04四位数移位 | C++ | Wrong Answer | 1 MS | 268 KB | 237 | 2026-07-24 16:53:08 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; int a=n/1000; int b=n/100%10; int s=n/10%10; int g=n%10; cout<<g*1000+a*100+b*10+s; return 0; }
------Input------
7980
------Answer-----
0798
------Your output-----
798