Write a C++ program that makes a multiplication table. Ask the user how many num
ID: 669525 • Letter: W
Question
Write a C++ program that makes a multiplication table. Ask the user how many numbers should be in the table
Store all of the data in a 2-dimensional vector of ints.
Allow the program to run repeatedly until the user is finished.
Do not allow inputs outside the range of 1-9
Sample Run
Things to Consider
You can use setw(n) before any number and it will add blank spaces to show the number in n columns. That is how to line up your columns.
Don't forget you have 0 based indexes and numbers that go from 1 to 9
Explanation / Answer
Output
This program generates multiplication table of an integer up 10
The source code below will perform this task.
Output
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.