Skip to main content

Practice ยท 2 of 3

Times Table

Implement void program(void) printing the 1..3 x 1..3 multiplication grid, one row per line, numbers separated by single spaces (no trailing space): `` 1 2 3 2 4 6 3 6 9 `` Compute every cell; print the separator logic explicitly.

Difficulty: beginner

Back to lesson: Practice: Pattern Factory