Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133705 qsy 05求百位数的每一位数之和 C++ Accepted 2 MS 272 KB 154 2025-10-20 17:22:48

Tests(10/10):


Code:

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