using System;
public class Program
{
public static void Main (string[] args)
double[ , ] doubleArray = { {4.4, 17.2}, {9.22, 2.28}, {11.2, 13.2} };
for (int k = 0; k < 2; k++) {
for (int j = 0; j < 3; j++) {
Console.WriteLine(doubleArray[j, k]+" ");
}
Console.WriteLine();