int[,] multiplicationTable = new int[10, 10];
// Populate the multiplication table array
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 10; j++)
{
multiplicationTable[i, j] = (i + 1) * (j + 1);
}
}
// Output the multiplication table
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 10; j++)
{
Console.Write(multiplicationTable[i, j] + "\t");
}
Console.WriteLine();
}