| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 90008 | sh25_ganzy | 倒序数 | C++ | 通过 | 0 MS | 248 KB | 195 | 2026-06-05 15:05:34 |
#include<bits/stdc++.h> using namespace std; int reverse(int n){ if(n<10) cout<<n; else{ cout<<n%10; reverse(n/10); } } int main(){ int x; cin>>x; reverse(x); return 0; }