| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143028 | 李昊阳 | 04四位数移位 | C++ | Wrong Answer | 0 MS | 272 KB | 238 | 2026-01-11 17:50:50 |
#include <iostream> using namespace std; int main() { long long n; cin>>n; int t=n/1000; int r=(n/100)%10; int e=(n/10)%10; int w=n%10; int q=w*1000+t*100+r*10+e; cout<<q<<endl; return 0; }
------Input------
7980
------Answer-----
0798
------Your output-----
798