Change the type TemperatureList given in Display 11.10 by adding a member
function called get_temperature, which takes one int argument that is an
integer greater than or equal to 0 and strictly less than MAX_LIST_SIZE. The
function returns a value of type double, which is the temperature in that
position on the list. So, with an argument of 0, get_temperature returns the
first temperature; with an argument of 1, it returns the second temperature,
and so forth. Assume that get_temperature will not be called with an argument
that specifies a location on the list that does not currently contain a
temperature.