CJCoding With Joseph

Inverted Right Triangle of Stars

Read an integer n from standard input and print an inverted right triangle of *. The first row has n stars and each row below has one fewer, down to 1. For example, if the input is 4, print:

****
***
**
*

Use a nested loop: the outer loop chooses the row, the inner loop prints the stars.

Expected Output:

****
***
**
*
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
4
This input is automatically fed to your program's stdin
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.