โ Back to Loops
Question 48
Multiplication Grid
Multiplication Grid
Read an integer N, then print an N x N multiplication grid. The value in row r, column c is r * c. Separate the numbers in each row with single spaces, and put 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 (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.