โ Back to Loops
Question 306
Right Triangle of Stars (nested for)
Right Triangle of Stars (nested for)
Use nestedforloops to print a right triangle of*characters with5rows, where rowihasistars. 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.