logo

Crowdly

Browser

Add to Chrome

У тілі методу Main() міститься наступний код: int [,] a, b; a = new int [2...

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

У тілі методу Main() міститься наступний код:

int [,] a, b;

a = new int [2, 2] {{22, 33}, {44, 55}};

b = new int [1, 1] {{10}};

b = a;

a [0, 0] = a [1, 1] = 77;

System.Console.Write( "{0} {1}", b [0,0], b [0,1]);

System.Console.Write( "{0} {1}", b [1,0], b [1,1]);

Вкажіть результат виведення на консоль після виконання методу Main():

(**CharpBase**)

More questions like this

Want instant access to all verified answers on moodle.chnu.edu.ua?

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

Browser

Add to Chrome