CCF認證2015121-數位之和

本人初學,水平有限,若有不足,懇請賜教! 具體代碼如下: #include <iostream> using namespace std; int main() { int n; cin >> n; int sum = 0; while(n) { sum += n % 10; n /= 10; } cout << sum; return 0; }
相關文章
相關標籤/搜索