Question: This is a loop nesting exercise. Use two loops, including at least one for loop, to write a C++ program that prints out an upside

This is a loop nesting exercise. Use two loops, including at least one for loop, to write a C++ program that prints out an upside down triangle of stars to the screen. The user will enter the number of stars in the first line. For example: How many stars on the first line? 5 or: How many stars on the first line? 2 Tips: try starting with a counting for loop that counts down from the number the user entered to 1 like this: How many stars on the first line? 5 5 4 3 2 1 then add an inner loop that can print that many stars on one line. each loop will have its own counting variable - make sure it has a unique name
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
