Multiplication Table
Print a 5×5 multiplication table using nested loops.
Format: each line is A x B = C
Example output:
1 x 1 = 1
1 x 2 = 2
...
5 x 5 = 25
Run check in the terminal to verify your solution.
Print a 5×5 multiplication table using nested loops.
Format: each line is A x B = C
Example output:
1 x 1 = 1
1 x 2 = 2
...
5 x 5 = 25
Run check in the terminal to verify your solution.