| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 24300 | 老方 | 数字反转 | C++ | Accepted | 0 MS | 260 KB | 155 | 2023-08-10 12:59:41 |
#include<bits/stdc++.h> using namespace std; int main(){ int i; string n; cin>>n; for(i=n.length()-1;i>=0;i--){ cout<<n[i]; } return 0; }