You need to write a multiplication table c++ program that accepts a multiplication base number as well as the low and high values for the range of multipliers.
It then constructs a multiplication table for the base number from the low number to the high number.
If the base number is 5, the low number is 3, and the high number is 15, for example, the multiplication table would display all multiples of 5 from 3 x 5 up to 15 x 5.?