Temperature record
make(write) a program that takes a maximum and minimum temperature of the city from Monday to Sunday, and three functions that calculate on average temperature, maximum temperature and minimum temperature of that week.
Example
Please enter this week temperature,
Monday: 19.0 14.0
Tuesday: 24.5 12.5
Wednesday: 22.0 9.5
Thursday: 17.0 9.0
Friday: 17.0 10.0
Saturday: 23.0 12.0
Sunday: 22.0 15.5
This week,
minimum temperature is: 9.0
maximum temperature is: 24.5
average temperature is: 16.21
Note: user entered values are shown in bold.