Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90176 贾竣兮 15五位数数字之和 C++ Accepted 1 MS 276 KB 180 2024-09-08 10:25:50

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,sum=0,b=10000; cin>>a; for(int c=0;c<5;c++){ sum+=a/b; a=a%b; b/=10; } cout<<sum; return 0; }