Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
646 孤独摇滚!hts 数字反转 C++ 通过 0 MS 248 KB 177 2022-05-21 19:45:29

Tests(10/10):


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


测评信息: