Advertisement
35657

Untitled

Feb 2nd, 2024
872
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7.     setlocale(LC_ALL, "ru");
  8.  
  9.     int x;
  10.     cout << "Введите число: ";
  11.     cin >> x;
  12.  
  13.     int sum = 0;
  14.  
  15.     for (; x > 0; x /= 10) {
  16.         sum += x % 10;
  17.     }
  18.  
  19.     cout << sum << endl;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement