CJCoding With Joseph

Number Pyramid (nested for)

Use nested for loops to print 5 rows where row i prints the numbers 1 through i with no spaces. The exact output is:

1
12
123
1234
12345

The inner loop prints the digits for a row; the outer loop moves to the next row.

Expected Output:

1
12
123
1234
12345
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.