How Cold is it?
Physicists tell us that the lowest possible temperature is absolute zero. Absolute zero is -459.69 degrees Fahrenheit.
a. Accept input from the user: a beginning temperature, an ending temperature, and an increment value (all Fahrenheit.)
b. Check for bad input: a temperature less than absolute zero and an ending temperature less than a beginning temperature. The program will send a message to STDERR if either condition is detected.
c. Print a header showing:
“Fahrenheit Celcius”.
d. Under the header, print all the values from the beginning to the ending temperature in the increment provided. Use a looping mechanism.
e. Ensure the user enters a floating point or decimal number. Do not accept whole numbers. Prompt for another input if such a condition is detected.