Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133682 杨浩宇 05求百位数的每一位数之和 C++ Accepted 1 MS 268 KB 141 2025-10-20 16:59:19

Tests(10/10):


Code:

#include <iostream> using namespace std; int main(){ int a,b,c,e,f; cin>>a; b=a%10; c=a/10%10; e=a/100; f=b+c+e; cout<<f; }