| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 147803 | 凌愉晴 | 逆序数 | C++ | Accepted | 100 | 0 MS | 244 KB | 158 | 2024-05-19 16:45:20 |
#include<bits/stdc++.h> using namespace std; int f(int x){ cout<<x%10; x/=10; if(x!=0) f(x); } int main(){ int n; cin>>n; f(n); return 0; }