logo

Crowdly

Browser

Add to Chrome

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

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

int[,] m = {{ -30, 8, 1},

                  { -14, 0, 10} };

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

            {  int min = 100;

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

                      if (m[i,j] < min)                    

                        { min = m[i,j]; int imin=i; }

            }

Чому дорівнює  imin по завершенні циклу?

0%
0%
0%
100%
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