| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 366 | 胡嘉诚 | 倒序输出一个四位整数 | C++ | Accepted | 100 | 0 MS | 252 KB | 128 | 2019-09-18 21:33:23 |
#include<iostream> int main(){ char a,b,c,d; scanf("%c%c%c%c",&a,&b,&c,&d); printf("%c%c%c%c",d,c,b,a); return 0; }