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

Tests(0/10):


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


测评信息: