| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 142514 | 李铭洋 | 04四位数移位 | C++ | Wrong Answer | 0 MS | 272 KB | 180 | 2026-01-10 20:17:39 |
#include<iostream> #include<cstdio> using namespace std; int main() { int a,b,c; cin>>a; b=a%10; c=b; b=b*1000; a=a-c; a=a/10; a=a+b; cout<<a; return 0; }
------Input------
7980
------Answer-----
0798
------Your output-----
798