Write a program that uses a two dimensional array to store the highest and lowes
ID: 3640151 • Letter: W
Question
Write a program that uses a two dimensional array to store the highest and lowest temperatures for each month of the year. The program should output the average high, average low, and the highest and lowest temperatures for the year. the program must consist of the following functions, getdata - reads and stores data in the 2D array, averageHigh- calculates and returns the avg high temp for the year, averageLow- calculates and returns the avg low temp for the year, index hightemp- returns the index of the highest temp, indexlowtemp- returns the index of the lowest temp in the array.This function needs all appropriate parameters. I need this in C++ language please. Someone answered this question already but the program does not work.