✅ 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 = 4;
a = new int [2, 2] {_________};
Console.Write( "{0}, {1}, {2}, {3}", a [1,1], a [1,0], a [0,0], a [0,1]) ;
}
}
Серед наведених кодів вкажіть всі коди, підстановка кожного з яких замість знаків підкреслення призведе до коректної програмі, що виводить на консоль значення: 1, 2, 3, 4
(**CharpBase**)