CJCoding With Joseph

Number Triangle

Read an integer n from standard input and print a number triangle: row i contains the digits 1 through i with no spaces. For example, if the input is 4, print:

1
12
123
1234

Use a nested loop: the outer loop for the row, the inner loop for the columns.

Expected Output:

1
12
123
1234
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
4
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.