calculate and display the multiplication
table of a number in algorithm
Answers
Answered by
1
Answer:
- Input the number for which the multiplication table is to be generated.
- Input the end value until which the table has to be generated.
- Repeat from i = 1 to end.
- Display the table values in the given output format.(num * i = num*i)
Similar questions