โ Back to Loops
Question 339
Number Pyramid
Number Pyramid
Read an integerNfrom input. Use nested loops to print a pyramid where rowiprints the digits1throughiwith no spaces. For input4the exact output is: 1 12 123 1234
Expected Output:
1 12 123 1234
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.