L-10 Create a matrix table multiplication exercise
Create a script that shows all the multiplication tables from numbers from 1 to 10 (and all the results by multiplying each number with each number from 1 to 10). Example follows:
1, 2, 3, 4, 5, 6, 7, 8, 9, 10
2, 4, 6, 8, 10, 12, 14,16, 18, 20,
3, 6, 9, 12, 15, 18, 21, 24, 27, 30
etc.
Estimated time: 20 Mins.