Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
28181 刘凌峰 15五位数数字之和 C++ Accepted 2 MS 728 KB 156 2022-06-18 08:22:50

Tests(10/10):


Code:

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