Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
122367 鲁博睿 各个位数之和 C++ Accepted 1 MS 272 KB 166 2025-06-15 16:05:26

Tests(5/5):


Code:

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