Advertisement
dxvmxnd

Untitled

Sep 21st, 2023 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4. int main() {
  5.     setlocale(LC_ALL, "Rus");
  6.     bool isNotCorrect = false;
  7.     int num, res=0;
  8.  
  9.     do {
  10.         cout << "Введите натуральное число\n";
  11.         cin >> num;
  12.         if (cin.fail()) {
  13.             isNotCorrect = true;
  14.             cout << "Данные введены неккоректно\n\n";
  15.             cin.clear();
  16.             while (cin.get() != '\n');
  17.         }
  18.         else {
  19.             isNotCorrect = false;
  20.             while (num >= 10) {
  21.                 res = num % 10 + res;
  22.                 num = num / 10;
  23.             }
  24.             cout << "Сумма цифр данного числа " << res << endl;
  25.         }
  26.     } while (isNotCorrect);
  27.     return 0;
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement