โ Back to Loops
Question 128
Multiplication Grid
Multiplication Grid
Read an integer N and print an N x N multiplication grid. The value in row r, column c is r * c. Separate numbers in a row with single spaces, each row on its own line. Example (N = 3): 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 (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.