Advertisement
Lavig

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

Nov 4th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 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{ 7 };
  9.     int x[n] = { -6, 12, 3, -2, 16, 5, 6 }, i{};
  10.     cout << "Вихідний масив: " << endl;
  11.     for (i; i <= n - 1; i++) {
  12.         cout << x[i] << " ";
  13.     }
  14.     cout << endl;
  15.     cout << "Перетворений масив:" << endl;
  16.     for (i = 0; i <= n - 1; i++) {
  17.         if (x[i] % 2 != 0) {
  18.             x[i] = 0;
  19.         }
  20.         cout << x[i] << " ";
  21.     }
  22.     cout << endl;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement