Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2375 黄宜洋 05求百位数的每一位数之和 C++ Accepted 0 MS 264 KB 157 2023-12-24 09:57:41

Tests(10/10):


Code:

# include<iostream> using namespace std; int main(){ int abc; cin>>abc; cout<<abc % 10 + abc / 10 % 10 + abc / 100 % 10; return 0; }