Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
87054 sh25_zhoumy 倒序数 C++ 通过 0 MS 244 KB 233 2026-04-10 15:47:18

Tests(4/4):


#include <iostream> using namespace std; int main() { int n; cin >> n; int rev = 0; while (n > 0) { rev = rev * 10 + n % 10; n = n / 10; } cout << rev << endl; return 0; }


测评信息: