Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130418 鄢晨曦 05求百位数的每一位数之和 C++ Accepted 2 MS 276 KB 168 2025-09-13 14:46:01

Tests(10/10):


Code:

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