Computer Science, asked by bhuetapibara, 8 hours ago

accept a number from the user and print multiplication tables​

Answers

Answered by pcplionelmessi
0

Answer:

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.

Explanation:

Please mark as the brainliest answer.

Similar questions