Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
336172 李铭泽 【C3-T】反向输出一个三位数 C++ 通过 100 3 MS 244 KB 156 2025-07-25 19:13:24

Tests(10/10):


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


测评信息: