Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97554 殷佳雨萱 各个位数之和 C++ Accepted 1 MS 272 KB 178 2024-11-16 10:53:52

Tests(5/5):


Code:

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