CJCoding With Joseph
15per day

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
๐Ÿ“ฅ Auto-Input:
3\n
This input is automatically fed to your program's stdin
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.