| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 79830 | sh25_shengmy | 数字反转 | C++ | Accepted | 0 MS | 248 KB | 150 | 2026-01-04 14:46:03 |
#include <bits/stdc++.h> using namespace std; int n,s; int main(){ for(cin>>n;n!=0;n/=10){ s=s*10+n%10; } cout<<s<<endl; return 0; }