Console.WriteLine("Введите число индексов по оси y: ");
int widthIndexZero = int.Parse(Console.ReadLine());
Console.WriteLine("Введите число индексов по оси x: ");
int heightIndexOne = int.Parse(Console.ReadLine());
int[,] arrayTwo = new int[widthIndexZero, heightIndexOne];
for (int i = 0 ; i < arrayTwo.GetLength(0); i++)
{
Console.Write("Введите значение для индекса " + i + " по оси y: ");
arrayTwo[i,0] = int.Parse(Console.ReadLine());
for (int j = 0; j < arrayTwo.GetLength(1); j++)
{
Console.Write("Введите значение для индекса " + j + " по оси x: ");
arrayTwo[0, j] = int.Parse(Console.ReadLine());
}
}
for (int i = 0 ; i < arrayTwo.GetLength(0); i++)
{
for (int j = 0; j < arrayTwo.GetLength(1); j++)
{
Console.Write("Введите значение для элемета (" + i + ',' +j + ") );
arrayTwo[i, j] = int.Parse(Console.ReadLine());
}
}