Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
53487 littletwleve 倒序数 C++ 通过 0 MS 240 KB 184 2024-10-23 15:42:50

Tests(4/4):


#include<bits/stdc++.h> using namespace std; void 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; }


测评信息: