Exercise 9 - Due at 11:59:00 PM on Sunday, 09/19/2021 You may include your solution for Problem 4 in a comment at the end of your program for Problems 1 and 2. 1. Write a C++ program to print the first 400 even numbers (0 included) using a while loop. Sample Run: 0 2 4 6 . . . 794 796 798 2. Now, write the same program using a do-while loop. 3. Reading Exercise Please read the following Sections from the textbook: Section 4.2 The if Statement Section 4.3 The if/else statement Section 4.4 The if/else if Statement Section 4.6 Nested if Statements Section 4.12 The switch Statement 4. Journaling: In about a paragraph or so, please outline some situations in which you could utilize selection statements in life.