| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8483 | 张承志 | 倒序输出一个四位整数 | C++ | Accepted | 100 | 0 MS | 252 KB | 152 | 2020-10-31 21:03:35 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a; for(int i=1;i<=4;i++){ cout<<a%10; a/=10; } return 0; }