logo

Crowdly

Browser

Add to Chrome

Проаналізуйте програму і визначте результат виведення. using System ; clas...

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

Проаналізуйте програму і визначте результат виведення.

using System ;

class Program

{

static void Main()

{

int [] [] a;

int [] b;

a = new int [2] [];

a [0] = new int [] {22, 33};

a [1] = new int [] {44, 55};

b = a [0]; b [0] = 77;

b = a [1]; b [1] = 88;

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

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

}

}

(**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