CJCoding With Joseph

Number and Its Square 1 to 5

Use a loop to print each number from 1 to 5 together with its square, separated by a single space, one pair per line. The exact output is:

1 1
2 4
3 9
4 16
5 25

Expected Output:

1 1
2 4
3 9
4 16
5 25
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.