| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133695 | zxy | 05求百位数的每一位数之和 | C++ | Wrong Answer | 1 MS | 272 KB | 166 | 2025-10-20 17:05:14 |
#include <iostream> using namespace std; int main(){ int a,b,c,d,e; cin>>a; b=a%10; c=a%100-(a%10); d=a/100; e=b+c+d; cout<<e; }
------Input------
923
------Answer-----
14
------Your output-----
32