logo CodeStepByStep logo

multTable

Language/Type: C++ Grid collections
Related Links:

Write a function named multTable that accepts a reference to a grid of integers and a maximum integer max as a parameter and turns the grid into a multiplication table of size max x max where each index [i][j] contains the product of i and j for all cells in the grid. If the grid is not the proper size, it must be resized. For example, if passed a max of 5, change the grid to store:

   col    0  1  2  3  4
row
 0      {{0, 0, 0, 0, 0},
 1       {0, 1, 2, 3, 4},
 2       {0, 2, 4, 6, 8},
 3       {0, 3, 6, 9, 12},
 4       {0, 4, 8, 12, 16}}
Function: Write a C++ function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.