All problems
EasyControl Flow
Multiplication table 5x5
Print a 5x5 multiplication table — 5 rows, 5 columns, space-separated.
- #nested-loops
Sample input
rows = 5
Sample output
1 2 3 4 5 2 4 6 8 10 … 5 10 15 20 25
nested-loop-table.py
Output
Press "Run code" to execute.
