9.9. Exercises: Loops

Practice makes better. Repetition is a good thing.

Repetition is a good thing.

Repetition is a good thing.

Repetition is a good thing.

WAIT!!! Why type “Repetition is a good thing,” four times when we can code a better result? How about printing the phrase 100 times instead?

1
2
3
4
 for (let i = 0; i < 100; i++)
 {
     Console.WriteLine("Repetition is a good thing.");
 }

Loops simplify repetitive tasks!

9.9.1. for Practice

Code it at repl.it

  1. Construct for loops that accomplish the following tasks:

    1. Print the numbers 0 - 20, one number per line.

    2. Print only the ODD values from 3 - 29, one number per line.

    3. Print the EVEN numbers 12 down to -14 in descending order, one number per line.

    4. Print the numbers 50 down to 20 in descending order, but only if the numbers are multiples of 3.

  2. Initialize two variables to hold the string 'LaunchCode' and the array {1, 5, -9, 234, 42}, then construct for loops to accomplish the following tasks:

    1. Print each element of the array to a new line.

    2. Print each character of the string—in reverse order—to a new line.

9.9.2. while Practice

Code it at repl.it

Define three variables for the LaunchCode shuttle—one for the starting fuel level, another for the number of astronauts aboard, and the third for the altitude the shuttle reaches.

  1. Construct while loops to do the following:

    1. Prompt the user to enter the starting fuel level. The loop should continue until the user enters a positive value greater than 5000 but less than 30000.

    2. Use a second loop to query the user for the number of astronauts (up to a maximum of 7). Validate the entry by having the loop continue until the user enters an integer from 1 - 7.

    3. Use a final loop to monitor the fuel status and the altitude of the shuttle. Each iteration, decrease the fuel level by 100 units for each astronaut aboard. Also, increase the altitude by 50 kilometers. (Hint: The loop should end when there is not enough fuel to boost the crew another 50 km, so the fuel level might not reach 0).

  2. After the loops complete, output the result with the phrase, The shuttle gained an altitude of ___ km.

    1. If the altitude is 2000 km or higher, add “Orbit achieved!”

    2. Otherwise add, “Failed to reach orbit.”