Lösningsförslag till uppgift 4.12¶
for (int y = 1; y < 7; y++)
{
for (int x = 1; x < 7; x++)
{
Console.Write($"{x * y} ");
}
Console.WriteLine();
}
for (int y = 1; y < 7; y++)
{
for (int x = 1; x < 7; x++)
{
Console.Write($"{x * y} ");
}
Console.WriteLine();
}