Complete the program below, named ConvertTemp.java, so that it reads in a temperature in degrees Fahenheit and converts it to the equivalent temperature in Celsius and also the equivalent temperature in Kelvin.
The two formulas you need are provided here:
Fahrenheit to Celsius: C = (5/9)(F - 32.0)
Celsius to Kelvin: K = C + 273.0
where
F refers to the Farhenheit temperature,
C refers to the Celsius temperature, and
K refers to the Kelvin temperature.
For example, if the input is F = 68.0 degrees Fahrenheit,
then the conversions should show that C = 20.0 degrees Celsius
and K = 293.0 degrees Kelvin. The output of the program should
appear as follows:
Please enter the temperature in degrees Farhenheit: 68.0 Celsius: 20.0 Kelvin: 293.0
Notice that there are a number of constants in the formulas above. All variables and constants should be of type double.