[solved] – Question 75573
Write a C# console program to display a multiplication table.
Prompt the user to supply a table number in the range 1 to 20.
Validate that the value given is in the range 1 to 20.
Display the table for values from 1 to 12. For example, if the eight times table is
requested, the display should be as follows:
1 times 8 = 8
2 times 8 = 16
3 times 8 = 24
…
up to:
12 times 8 = 96
A for loop has to be used.
Expert Answer
OR

