Task: Write a program that asks the user whether they want to convert temperatures from Celsius to Fahrenheit or vice versa. The program should then ask the user how many temperatures they would like to convert. It should read those temperatures in and store them in an array. Then the program should call a function that returns an array with the converted temperatures, as well as returing the average of the temperatures the user entered. Finally, the program should print out the average and the converted temperatures.
Purpose: The primary purpose of this lab is to give us more practice using arrays.