Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <windows.h>
- #include <format>
- using namespace std;
- int main()
- {
- SetConsoleOutputCP(1251);
- int const n{ 4 };
- int i{}, j{}, max_i{}, max_j{}, line_index{}, column_index{};
- double max{}, line_sum{}, line_product{ 1 }, column_sum{}, column_product{ 1 }, main_diagonal_sum{}, main_diagonal_product{ 1 }, secondary_diagonal_sum{}, secondary_diagonal_product{ 1 };
- double Z[n][n]{
- {2.3, -5, 6.2, 12},
- {10.3, 0.23, 32.6, 8.33},
- {-7.1, 4, -0.25, 9},
- {-1, -7.7, 8, 1.98} };
- while (true) {
- cout << "Введіть індекс рядка, для якого будуть проводитись розрахунки (від 0 до 3): ";
- cin >> line_index;
- if (cin.fail() || cin.peek() != '\n' || line_index < 0 || line_index > 3) {
- cin.clear();
- cin.ignore(32767, '\n');
- cout << "Індекс рядка було введено неправильно. Спробуйте ще раз!" << endl;
- continue;
- }
- else {
- break;
- }
- }
- while (true) {
- cout << "Введіть індекс стовпця, для якого будуть проводитись розрахунки (від 0 до 3): ";
- cin >> column_index;
- if (cin.fail() || cin.peek() != '\n' || column_index < 0 || column_index > 3) {
- cin.clear();
- cin.ignore(32767, '\n');
- cout << "Індекс стовпця було введено неправильно. Спробуйте ще раз!" << endl;
- continue;
- }
- else {
- break;
- }
- }
- max = Z[0][0];
- cout << "Задана матриця: " << endl;
- for (i = 0; i < n; i++) {
- for (j = 0; j < n; j++) {
- if (Z[i][j] > max) {
- max = Z[i][j];
- max_i = i;
- max_j = j;
- }
- if (i == line_index) {
- line_sum += Z[i][j];
- line_product *= Z[i][j];
- }
- if (j == column_index) {
- column_sum += Z[i][j];
- column_product *= Z[i][j];
- }
- cout << format("{:10}", Z[i][j]);
- if (i == j) {
- main_diagonal_sum += Z[i][j];
- main_diagonal_product *= Z[i][j];
- }
- if (i + j == n - 1) {
- secondary_diagonal_sum += Z[i][j];
- secondary_diagonal_product *= Z[i][j];
- }
- }
- cout << endl;
- }
- cout << "Максимальний елемент матриці - " << max << endl;
- cout << "Індекс рядка максимального елемента матриці - " << max_i << endl;
- cout << "Індекс стовпця максимального елемента матриці - " << max_j << endl;
- cout << "Сума елементів рядка із заданим індексом (" << line_index << ") - " << line_sum << endl;
- cout << "Добуток елементів рядка із заданим індексом (" << line_index << ") - " << line_product << endl;
- cout << "Сума елементів стовпця із заданим індексом (" << column_index << ") - " << column_sum << endl;
- cout << "Добуток елементів стовпця із заданим індексом (" << column_index << ") - " << column_product << endl;
- cout << "Сума елементів головної діагоналі - " << main_diagonal_sum << endl;
- cout << "Добуток елементів головної діагоналі - " << main_diagonal_product << endl;
- cout << "Сума елементів побічної діагоналі - " << secondary_diagonal_sum << endl;
- cout << "Добуток елементів побічної діагоналі - " << secondary_diagonal_product << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement