| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 404 | 朱秦千惠 | 倒序输出一个四位整数 | C++ | Wrong Answer | 11 | 0 MS | 252 KB | 143 | 2019-09-19 19:23:04 |
#include<iostream> int main(){ int n; scanf("%d",&n); printf("%d",(n%10)*1000+(n%100/10)*100+(n%1000/100)*10+(n/1000*1)); return 0; }