| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 774 | 未知用户 | 倒序输出一个四位整数 | C++ | Accepted | 100 | 0 MS | 252 KB | 202 | 2019-09-22 06:34:17 |
#include<iostream> int main(){ int a,b,c,d,e,f; scanf("%d",&a); if (a>=1000&&a<=9999) { b=a%10; c=a/10%10; d=a/100%10; e=a/1000%10; printf("%d%d%d%d",b,c,d,e); } return 0; }