Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
106671 李昊宇 各个位数之和 C++ Accepted 1 MS 276 KB 177 2025-01-16 14:51:54

Tests(5/5):


Code:

#include<iostream> using namespace std; int main(){ int a,b=0; cin>>a; while(a>0){ b += a%10; a = a/10; } cout<<b; return 0; }