| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 12370 | slx | 倒序数 | C++ | Accepted | 0 MS | 252 KB | 211 | 2023-03-24 15:52:26 |
//601160 - 倒序数 #include <bits/stdc++.h> using namespace std; int f(int i){ int temp; while(i>0) { temp=i%10; printf("%d",temp); i=i/10; } } int main(){ int i; cin>>i; f(i); }