Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
544 | 张曦元 | 倒序输出一个四位整数 | C++ | Wrong Answer | 0 | 0 MS | 260 KB | 131 | 2019-09-20 22:43:15 |
#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; }