| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1185 | 老师 | 倒序输出一个四位整数 | C++ | Accepted | 100 | 0 MS | 252 KB | 134 | 2019-10-06 10:42:12 |
#include<iostream> int main(){ int a,z; scanf("%d",&a); while(a>0){ z=a%10; a=a/10; printf("%d",z); } return 0; }