Lab Practice Graded

Write a function FtoC that has one parameter, Fahrenheit temperature. The function converts Fahrenheit temperature to Celsius temperature and returns the Celsius temperature.

The equation for converting a Fahrenheit to Celsius is: Celsius= (5/9)*(Fahrenheit - 32)

Write a function CtoF that has one parameter, Celsius temperature. The function converts Celsius temperature to the correspondent Fahrenheit temperature and returns the Fahrenheit temperature.

The equation for converting a Celsius temperature to Fahrenheit is


Fahrenheit=(9*Celsius/5)+32

Write a program that asks user to enter Fahrenheit temperature for 7 days and finds the corresponding Celsius temperatures for these days and the average Celsius temperatures. Then the program will ask user to enter Celsius temperature for 7 days and finds the corresponding Fahrenheit temperature for these days and the average Fahrenheit temperature.