Practice
Multiplication Table
Design and code a program that displays a multiplication
table. Your program prompts the user for the range
of integer values that the table covers and displays the
table in a columnar format.
The output from your program might look something like:
Enter the low end of the range : 3
Enter the high end of the range : 7
3 4 5 6 7
3 9 12 15 18 21
4 12 16 20 24 28
5 15 20 25 30 35
6 18 24 30 36 42
7 21 28 35 42 49
|
|