| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 557 | 张曦元 | 倒序输出一个四位整数 | C++ | Wrong Answer | 0 | 0 MS | 256 KB | 126 | 2019-09-21 07:58:54 |
#include <iostream> int main(){ int a,b,c,d; scanf("%d%d%d%d",&a,&b,&c,&d); printf("%d%d%d%d",d,c,b,a); return 0; }