โ Back to Loops
Question 310
Number Pyramid (nested for)
Number Pyramid (nested for)
Use nestedforloops to print5rows where rowiprints the numbers1throughiwith 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.