Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
79830 sh25_shengmy 数字反转 C++ 通过 0 MS 248 KB 150 2026-01-04 14:46:03

Tests(10/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<<s<<endl; return 0; }


测评信息: