Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
28184 李妍 15五位数数字之和 C++ Accepted 2 MS 728 KB 166 2022-06-18 08:25:55

Tests(10/10):


Code:

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