logo

Crowdly

Browser

Add to Chrome

Що буде результатом виконання фрагмента програми int[,] squareArray1 = new int...

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

Що буде результатом виконання фрагмента програми

int[,] squareArray1 = new int[2,3];

int[,] squareArray2 = {{1, 2, 3}, {4, 5, 6}};

for(int i = 0; i < squareArray2.GetLength(0); i++)

{

       for (int j = 0; j < squareArray2.GetLength(1); j++)

       {

               Console.Write(squareArray2[i,j]);

       }

}

67%
0%
33%
0%
More questions like this

Want instant access to all verified answers on dl.guscoll.com?

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

Browser

Add to Chrome