Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147404 凌愉晴 逆序数 C++ 通过 100 0 MS 252 KB 146 2024-05-18 15:04:28

Tests(4/4):


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


测评信息: