标签:
水。
#include<iostream> #include<cstdio> using namespace std; int main() { int n,sum = 0; cin >> n; while(n) { sum += n%10; n /= 10; } cout << sum << endl; return 0; }
CCF_201512-1_数位之和
原文地址:http://www.cnblogs.com/zhurb/p/5843236.html