| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80133 | sh25_wangtaojie | 数字反转 | C++ | Accepted | 0 MS | 252 KB | 150 | 2026-01-04 15:02:34 |
#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; }