Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
31058 diandian 倒序数 C++ 通过 0 MS 248 KB 214 2023-11-13 21:15:10

Tests(4/4):


#include <bits/stdc++.h> using namespace std; int main() { long long n, s = 0; cin >> n; while (n) { s = s * 10 + n % 10; n /= 10; } cout << s; return 0; }


测评信息: