Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89508 | 朱安然 | 04四位数移位 | C++ | Wrong Answer | 1 MS | 272 KB | 133 | 2024-08-25 13:22:19 |
#include <iostream> using namespace std; int main(){ int a,b,c,d; cin>>a; b=a%10*1000; c=a/10; d=c+b; cout<<d<<endl; }
------Input------
7980
------Answer-----
0798
------Your output-----
798