CJCoding With Joseph

Right Triangle of Stars

Using nested loops, print a right triangle of *. Row 1 has 1 star, row 2 has 2, and so on up to row 4 with 4 stars. Each row ends with a newline:

*
**
***
****

The output ends with a newline after the last row.

Expected Output:

*
**
***
****
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.