Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
333050 小林老师 【C3-5】“倒”数 C++ 通过 100 3 MS 240 KB 164 2025-07-15 22:19:04

Tests(2/2):


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


测评信息: