Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147361 刘国洋 逆序数 C++ 通过 100 0 MS 252 KB 219 2024-05-18 14:52:40

Tests(4/4):


#include<bits/stdc++.h> using namespace std; int turn(int n){ if(n>=10) { printf("%d",n%10); turn(n/10); } else printf("%d",n); } int main() { int n; scanf("%d",&n); turn(n); return 0; }


测评信息: