Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89966 | 何松羽 | 04四位数移位 | C++ | Wrong Answer | 0 MS | 268 KB | 148 | 2024-09-07 13:14:56 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>b>>d>>e; a=1000; a=b*1000+c*100+d*10+e*1; return 0; }
------Input------
6234
------Answer-----
4623
------Your output-----