logo

Crowdly

Browser

Add to Chrome

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

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

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

class Program

{

public static void Main()

{

int [] [] A = new int [2] [];

int [] B = new int [2];

B [0] = 3;

A [0] = B;

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

A [1] = B;

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

System.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