Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
21318 gaoyx 倒序数 C++ 通过 100 0 MS 696 KB 154 2021-12-18 15:01:51

Tests(10/10):


#include <iostream> using namespace std; int main() { int n,x=0; cin>>n; while (n>0) { x=x*10+n%10; n=n/10; } cout<<x; return 0; }


测评信息: