using System;
public class Program
{
public static void Main()
double[, ] perfect = new double[3, 10]; // 3 rows 10 columns
for (int i = 0; i < 3; i++) // This will reference the row numbers
for (int j = 0; j < 10; j++) // this will reference the column numbers
perfect[i, j] = Math.Pow((double)j, (double)i + 2);
}
foreach(double cell in perfect)
Console.Write(cell + " , ");