Temperature Converter

Write a program TemperatureConverter.java that stores a temperature in degrees Fahrenheit in a double variable. Then convert the value to degrees Celsius using the formula degreesC = (5 / 9) * (degreesF - 32). Print out the resulting temperature.

Sample Output

The temperature 47.5 degrees F
is 8.61111111111111 degrees C