| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5012 | 朱嘉铭 | 倒序输出一个四位整数 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 173 | 2020-07-26 15:06:45 |
#include<iostream> int main(){ int a; int b=a%10; int c=a/10%10; int d=a/100%10; int e=a/1000%10; int n=b*1000+c*100+d*10+e; printf("%d",n); }