Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87611 Kevin 05求百位数的每一位数之和 C++ Accepted 1 MS 272 KB 125 2024-08-10 20:59:37

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; cout<<n/100+n/10%10+n%10; return 0; }