. очень . ЯЗЫК С++ Дана матрица А размера m x n. Найти количество строк матрицы, сумма элементов которых отрицательна.

timoxaept timoxaept    1   01.04.2021 16:31    0

Ответы
poliaprokopets poliaprokopets  01.05.2021 16:33

Объяснение:

#include <iostream>

#include <ctime>

using namespace std;

int main()

{

srand(time(NULL));

int m, n;

cin >> m >> n;

if (m <= 0 || n <= 0) return 0;

int** arr = new int* [m];

for (int i = 0; i < m; i++)

{

 arr[i] = new int[n];

}

cout << endl;

for (int i = 0; i < m; i++)

{

 for (int j = 0; j < n; j++)

 {

  arr[i][j] = rand() % 11 - 5;

  cout.width(3);

  cout << arr[i][j];

 }

 cout << endl;

}

cout << endl;

int belowZero = 0;

for (int i = 0; i < m; i++)

{

 int sum = 0;

 for (int j = 0; j < n; j++)

 {

  sum += arr[i][j];

 }

 if (sum < 0) belowZero++;

}

cout << "  Answer: " << belowZero << endl;

for (int i = 0; i < m; i++)

{

 delete[] arr[i];

}

delete[] arr;

}

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика