Due date: Thursday, January 29, 2004.
Ex. 1. Write a program that inputs a temperature in degrees Fahrenheit and converts it to degrees Celsius. If F is the temperature in degrees Fahrenheit, then the corresponding temperature in degrees Celsius is:
C = (F - 32) * 5 / 9
a. Declare the variables you need in your program of type int. Run the program and include the execution as a comment at the end.
b. Reverse the order of the operations *5 and /9. Note how the result changes. Include the output of this version of the code as a comment and then change the order of the operations back.
c. Change the type of the variables to float and note how the result changes. Include the output of this version of the code as a comment. This is the code that you have to send me.
Send me: the source file with variables of type float and the comments from the execution of all versions of the program.