✅ 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 min = 100;
for (int i = 0; i < 2; i++)
{ for (int j = 0; j < 3; j++)
if (m[i,j] > min) min = m[i,j];
}
Чому дорівнює min по завершенні циклу?