CCF_201512-1_数位之和
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_201512-1_数位之和相关的知识,希望对你有一定的参考价值。
水。
#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_数位之和的主要内容,如果未能解决你的问题,请参考以下文章