logo

Crowdly

Browser

Add to Chrome

int [,]  m  = {{ -3, 8, 1},                   { -14, 0, 10} };              int...

✅ 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 по завершенні циклу?

0%
100%
0%
0%
0%
More questions like this

Want instant access to all verified answers on student.khnuvs.org.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome