write nested for statement that prints n by n multiplication table
Answers
Answered by
0
Answer:
The following program uses a nested-for loop to display multiplication tables from 1-10. The print() function inner loop has end=' ' which appends a space instead of default newline. Hence, the numbers will appear in one row. Last print() will be executed at the end of inner for loop
Explanation:
mark as brain list
Similar questions