ответ: что не ясно - спрашивай.
#include <iostream>
#include <cstdlib> // обьявление rand()
#include <ctime> // обьявление srand()
#define SIZE 5 // размер массива
int main()
{
using namespace std;
setlocale(LC_ALL, "ru");
srand(time(NULL));
int arr[SIZE][SIZE];
for (unsigned i = 0u; i < SIZE; i++)
for (unsigned j = 0u; j < SIZE; j++)
arr[i][j] = rand() % 20 - 10; // от -10 до 10
cout << arr[i][j] << '\t';
}
cout<<'\n';
if (arr[i][j] == 1)
int max = arr[i][0];
for (unsigned k = i; k <= i; k++)
for (unsigned l = 0u; l < SIZE; l++)
if (arr[k][l] > max)
max = arr[k][l];
cout << "\nРядок # " << i << " | максимальный элемент: " << max;
break;
return 0;
ответ: что не ясно - спрашивай.
#include <iostream>
#include <cstdlib> // обьявление rand()
#include <ctime> // обьявление srand()
#define SIZE 5 // размер массива
int main()
{
using namespace std;
setlocale(LC_ALL, "ru");
srand(time(NULL));
int arr[SIZE][SIZE];
for (unsigned i = 0u; i < SIZE; i++)
{
for (unsigned j = 0u; j < SIZE; j++)
{
arr[i][j] = rand() % 20 - 10; // от -10 до 10
cout << arr[i][j] << '\t';
}
cout<<'\n';
}
for (unsigned i = 0u; i < SIZE; i++)
{
for (unsigned j = 0u; j < SIZE; j++)
{
if (arr[i][j] == 1)
{
int max = arr[i][0];
for (unsigned k = i; k <= i; k++)
{
for (unsigned l = 0u; l < SIZE; l++)
{
if (arr[k][l] > max)
{
max = arr[k][l];
}
}
}
cout << "\nРядок # " << i << " | максимальный элемент: " << max;
break;
}
}
}
return 0;
}