CJCoding With Joseph

Star Triangle

Print a left-aligned triangle of asterisks that grows from 1 to 3 stars, one row per line:

*
**
***

Row 1 has one *, row 2 has two, and row 3 has three. Build each row before moving to the next line.

Expected Output:

*
**
***
Topics:
Printing
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.