Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
76652 sh25_shenpy 数字反转 C++ 解答错误 0 MS 236 KB 151 2025-12-19 15:42:12

Tests(0/10):


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


测评信息: