| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 36959 | YOYOLEE-李昕颖 | 倒序数 | C++ | Accepted | 1 MS | 252 KB | 190 | 2024-01-18 14:49:38 |
#include<bits/stdc++.h> using namespace std; int main() { int n,a[100],c=0; cin>>n; while(n){ a[c++]=n%10; n/=10; } for(int i=0;i<c;i++){ cout<<a[i]; } return 0; }