July 26 Homework Due July 28 1. (5+5 Points) Write a program that asks for a temperature (as a decimal number) in Farenheit and outputs the equivalent temperature in Celsius. Write another program that converts from Celsius to Farenheit. The formula for conversion is C = (F - 32) * (5/9). Beware of downcasting from floats to integers. Check your answers! > Input a temperature in Farenheit: 32.0 > Your temperature in Celsius is: 0.0 2. (10 Points) Write a program that takes in 3 integer inputs, and outputs the maximum of the three inputs. > Input integer 1: 4 > Input integer 2: 5 > Input integer 3: 6 > The maximum of the integers you inputted is: 6