Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
122542 田子熙 各个位数之和 C++ Accepted 1 MS 268 KB 160 2025-06-21 11:04:30

Tests(5/5):


Code:

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