# Example 4
Generate multiplication table of 13 up to 20.
for (int i = 1; i <= 20; i++)
{
Console.WriteLine("{0} x {1} = {2}", 13, i, 13 * i);
}
1
2
3
4
2
3
4
CodingSchool.pk Generate multiplication table of 13 up to 20.
for (int i = 1; i <= 20; i++)
{
Console.WriteLine("{0} x {1} = {2}", 13, i, 13 * i);
}