CJCoding With Joseph

Nested Loops: Multiplication Grid

Use nested loops to print a 3 x 3 multiplication grid. The value in row r, column c is r * c. Separate values in a row with single spaces, one row per line.

Expected output:
1 2 3
2 4 6
3 6 9

Expected Output:

1 2 3
2 4 6
3 6 9
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.