| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 395 | 黄祖耀 | 倒序输出一个四位整数 | C++ | Accepted | 100 | 0 MS | 252 KB | 125 | 2019-09-18 23:05:23 |
#include<iostream> int main(){ int a; scanf("%d",&a); printf("%d%d%d%d",a%10,a%100/10,a/100%10,a/1000); return 0; }