โ Back to Loops
Question 218
Inverted Right Triangle of Stars
Inverted Right Triangle of Stars
Read an integernfrom standard input and print an inverted right triangle of*. The first row hasnstars and each row below has one fewer, down to1. For example, if the input is4, print: **** *** ** * Use a nested loop: the outer loop chooses the row, the inner loop prints the stars.
Expected Output:
**** *** ** *
Topics:
Loops
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.