Question: Using C++ ,Write a function void multiTable(int n) to print an n-by-n multiplication table (starting with 1). Each number should be preceded by a tab.
Using C++ ,Write a function void multiTable(int n) to print an n-by-n multiplication table (starting with 1). Each number should be preceded by a tab. The output for the command multiTable(5) should be as follows:
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
5 10 15 20 25
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
