Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
87434 sh25_wuyy 倒序数 C++ 通过 0 MS 240 KB 184 2026-04-18 09:40:59

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; }


测评信息: