CJCoding With Joseph

Right Triangle of Stars (nested for)

Use nested for loops to print a right triangle of * characters with 5 rows, where row i has i stars. The exact output is:

*
**
***
****
*****

The inner loop prints the stars for a row; the outer loop moves to the next row.

Expected Output:

*
**
***
****
*****
Topics:
Loops
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.