Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
89690 sh25_shengmy 倒序数 C++ 通过 0 MS 244 KB 182 2026-06-05 14:43:21

Tests(4/4):


#include<bits/stdc++.h> using namespace std; int dxs(int n){ if(n<10)cout<<n; else{ cout<<n%10; dxs(n/10); } }int main(){ int x; cin>>x; dxs(x); return 0; }


测评信息: