| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 465 | 高尚 | 倒序输出一个四位整数 | C++ | Accepted | 100 | 0 MS | 256 KB | 136 | 2019-09-19 21:49:23 |
#include<iostream> int main(){ int a; scanf("%d",&a); printf("%d%d%d%d",a%10,a/10%10,a/100%10,a/1000); return 0; }