Problem:
Question- Write a temperature application . Your solution should be a 2 class application that has a one dimensional array as a data member . The array stores temperatures for any given week . Provide constuctors for instantiating the class and methods to return the highest temperatures, lowest temperatures, average temperatures.
Provide a method that accepts as an argument a temperature and returns the number of days the temperatureswere belowthat value.
Override the ToString ()method to return a listing of all the temperatures in 3 column format and the temperature range for the given week. Write a second class to test your class.
Please show code with comments so I can follow what you are doing.