| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 147506 | 林汐 | 逆序数 | C++ | Wrong Answer | 0 | 0 MS | 244 KB | 203 | 2024-05-18 15:38:13 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d,e; cin>>a; b=a%10;//Ones c=a/10%10;//Tens d=a/100%10;//Hundreds e=a/1000;//thousand cout<<b<<c<<d<<e; return 0; }