Computer Science, asked by mohantyjoshna20, 7 months ago

Write programme to enter a number and display the multiplication table.​

Answers

Answered by yanshuchauhan0
1

Explanation:

To print multiplication table we need to iterate from 1 to 10. Run a loop from 1 to 10 , increment 1 on each iteration. The loop structure should look like for(i=1; i<=10; i++) . Inside loop generate multiplication table using num * i and print in specified format.Jun 12, 2015

Similar questions