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;iRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.