| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 406 | 朱秦千惠 | 倒序输出一个四位整数 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 146 | 2019-09-19 19:28:56 |
#include<iostream> int main(){ int n=7980; int temp=0; while(n!=0){ temp=temp*10+n%10; n/=10; } printf("%d",temp); return 0; }