Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

initializerow (row) = (1)(assign a value to a variable) Print all rowsof multipl

ID: 3617578 • Letter: I

Question

initializerow

(row) = (1)(assign a value to a variable)

Print all rowsof multiplication table using while loop

while

{

    ( row) <= ( n) (less than or equal to)

    is true, repeat  

  Process all columns for a row using While

  while

     {

initialize column

(col)= (1) (assign a value to a variable)

(col) <= ( n) (less than or equal to)

istrue, repeat  

(product) = ( row) * ( col) (multiplication)

printa number row

Printsymbol *

printa character *

printa number col

printsymbol =

printa character product

col++;

     }

row++;

}

Explanation / Answer

HI, I am posting the code that Solves this problem, you can makeyour algorithm by using this, Please Rate :) #include using namespace std; int main() {     int num=0;     cout num;        for(inti=1;i