Advertisement
Lavig

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

Nov 15th, 2024
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3. #include <format>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     SetConsoleOutputCP(1251);
  9.     int const n{ 4 };
  10.     int i{}, j{};
  11.     int W[n][n]{
  12.         {1, 3, -9, 0},
  13.         {-4, 6, 2, -5},
  14.         {3, 7, 0, 6},
  15.         {-3, 9, 11, -2} };
  16.     cout << "Початкова матриця: " << endl;
  17.     for (i = 0; i < n; i++) {
  18.         for (j = 0; j < n; j++) {
  19.             cout << format("{:5}", W[i][j]);
  20.         }
  21.         cout << endl;
  22.     }
  23.     cout << "Перетворена матриця: " << endl;
  24.     for (i = 0; i < n; i++) {
  25.         for (j = 0; j < n; j++) {
  26.             if (W[i][j] < 3) {
  27.                 W[i][j] = 8;
  28.             }
  29.             cout << format("{:5}", W[i][j]);
  30.         }
  31.         cout << endl;
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement