Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
39064 fuhaoze 数字反转 C++ 解答错误 1 MS 244 KB 181 2024-01-30 15:37:07

Tests(0/10):


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


测评信息: