✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int[,] m = {{ -3, 8, 1},
{ -14, 0, 10} };
int max = 0;
for (int i = 0; i < 2; i++)
{ for (int j = 0; j < 3; j++)
if (m[i,j] > max) max = m[i,j];
}
Чому дорівнює max по завершенні циклу?