Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
78096 sh25_shenpy 倒序数 C++ 通过 0 MS 244 KB 183 2025-12-26 15:21:48

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


测评信息: