โ Back to Loops
Question 338
Inverted Right Triangle of Stars
Inverted Right Triangle of Stars
Read an integerNfrom input. Use nested loops to print an inverted right triangle of*characters: the first line hasNstars, the next hasN-1, down to 1 star on the last line. Each line ends with a newline. For input4the exact output is: **** *** ** *
Expected Output:
**** *** ** *
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.