Advertisement
Lavig

Лабораторна робота №8 (Завдання 4)

Nov 4th, 2024
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.80 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     SetConsoleOutputCP(1251);
  8.     auto const n{ 12 };
  9.     int x[n]{}, count{};
  10.     int i{};
  11.     for (i = 0; i <= n - 1; i++) {
  12.         while (true) {
  13.             cout << "x[" << i << "] = ";
  14.             cin >> x[i];
  15.             if (cin.fail() || cin.peek() != '\n') {
  16.                 cin.clear();
  17.                 cin.ignore(32767, '\n');
  18.                 cout << "Число було введено неправильно. Спробуйте ще раз!" << endl;
  19.                 continue;
  20.             }
  21.             else {
  22.                 break;
  23.             }
  24.         }
  25.     }
  26.     cout << "Вихідний масив:" << endl;
  27.     for (i = 0; i <= n - 1; i++) {
  28.         cout << x[i] << " ";
  29.         if (x[i] % 2 == 0 && x[i] % 3 == 0) {
  30.             count += 1;
  31.         }
  32.     }
  33.     cout << endl << "Кількість парних елементів, кратних трьом - " << count;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement