# 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
Last Updated: Apr 22, 2020, 5:33 PM