CJCoding With Joseph

Number Triangle

Using nested loops, print a number triangle. Row r prints the numbers 1 through r with no spaces, for r from 1 to 4. Each row ends with a newline:

1
12
123
1234

The output ends with a newline after the last row.

Expected Output:

1
12
123
1234
Topics:
Printing
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.