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

Tests(0/10):


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


测评信息: