logo

Crowdly

Browser

Add to Chrome

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

✅ 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 [] b1 = {1, 2}, b2 = {3,4};

a = new int [2] [];

a [1] = b1;

a [0] = b2;

a [0] [0] = 7; a [0] [1] = 5; a [1] [1] = 0;

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

Console.Write( "{0} {1}", b2 [0], b2 [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