Exercise 5 - 01/26/2017 1. Write a C++ program to read in a time (only the hour, in millitary time). If the time is before noon, print "Good Morning". If it is between noon and 6 PM, print "Good Afternoon". Otherwise, print "Good Evening". Sample Output: 1. Enter the time: 10 Good Morning 2. Enter the time: 21 Good Evening