CJCoding With Joseph

Number Pyramid

Read an integer N from input. Use nested loops to print a pyramid where row i prints the digits 1 through i with no spaces. For input 4 the exact output is:

1
12
123
1234

Expected Output:

1
12
123
1234
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
4\n
This input is automatically fed to your program's stdin
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.