write a program to help the weatherman with his weather report. you will sample the temperature each hour on the hour over the course of 24 hours. at the end of the 24 hour cycle you will print out the daily high and low temperature, the hours they occurs at, and the average temperature for the day. you can start at 1am and end at midnight. use the following data and use read, data statements to get the data into your program
data 1am, 56
data 2am, 53
data 3am, 50
data 4am, 48
data 5am, 47
data 6am, 47
data 7am, 49
data 8am, 52
data 9am, 53
data 10am, 55
data 11am, 58
data noon, 63
data 1pm, 65
data 2pm, 68
data 3pm, 69
data 4pm, 70
data 5pm, 67
data 6pm, 64
data 7pm, 63
data 8pm, 62
data 9pm, 58
data 10pm, 56
data 11pm, 55
data midnight, 53