Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
16109 xingru 倒序数 C++ 通过 1 MS 240 KB 194 2023-04-29 19:09:42

Tests(4/4):


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


测评信息: