| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5161 | 余文涛 | 倒序输出一个四位整数 | C++ | Wrong Answer | 11 | 0 MS | 248 KB | 182 | 2020-07-27 20:53:04 |
#include<bits/stdc++.h> using namespace std; int main(){ int x,a,b,c,d; cin>>x; a=x/1000; b=(x/100)%10; c=(x/10)%10; d=x%10; cout<<d*1000+c*100+b*10+a; return 0; }