| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 147412 | dadsafdfe | 逆序数 | C++ | Compile Error | 0 | 0 MS | 0 KB | 158 | 2024-05-18 15:06:55 |
#include <iostream> using namespace std; void f(int x){ cout<<x%10; x/=10; if(x!=0) f(X); } int main(){ int n; cin>>n; f(n); return 0; }