Question: C++ Program: Write a program that reads in the size of a multiplication table and then prints out hte table. Your program should work for
C++ Program: Write a program that reads in the size of a multiplication table and then prints out hte table. Your program should work for tables of all sizes between 1 and 15. When the user enters the table size, make sure it is a number from 1 to 15. If it is not a valid size, ask the user to re-enter the number. Allow the user to construct as many nultiplication tablesas they would like before ending the program.

Example output: Enter the table size: 25 Size must be between 1 and 20 Enter the table size 5 3 12 15 4 2 16 20 10 15 20 25 Would you like to print another table (Y or N) Enter the table size: 1 Would you like to print another table (Y or N) Enter the table size 3 2 4 6 3 3 9 Would you like to print another table (Y or N) N End program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
