CS 131 PROGRAMMING ASSIGNMENT 7 Chapter 7, problem 19, p. 174. You may assume that a name consists of a single string with no embedded spaces and can, therefore, be read with cin >> name as opposed to getline(cin, name). Print all numeric output to 1 decimal place of accuracy. Pick a data sentinal to end your input, e.g. END * The part that finds the class size, how many passed, and the student with the highest average. SAMPLE INPUT: Johnson 81.0 90.0 100.0 Liang 60.0 60.0 60.0 Franz 50.0 50.0 50.0 Martino 100.0 50.0 80.0 END SAMPLE OUTPUT (in a file): NAME SCORES 1-3 AVG P/F Johnson 81.0 90.0 100.0 90.3 passed Liang 60.0 60.0 60.0 60.0 passed Franz 50.0 50.0 50.0 50.0 failed Martino 100.0 50.0 80.0 76.7 passed The class size is 4. 3 passed. The student with the highest average, 90.3, is Johnson.