Create a java program converts fahrenheit to celsius


Discussion:

Q: Create a Java program that converts fahrenheit to celsius.

The formula is: celsius = (5 / 9) * (fahrenheit - 32)

The program read a Fahrenheit degree in double from the input dialog box then converts it to Celsius and displays the result in a message dialog box.

In Java, 5 / 9 is 0, so I need to write 5.0 / 9 to obtain the correct result.

The program should also convert feet into meters. The program prompts the user to enter a number in feet, converts it to meters, and displays the result. One foot is 0.305 meters.

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Create a java program converts fahrenheit to celsius
Reference No:- TGS01935164

Now Priced at $20 (50% Discount)

Recommended (92%)

Rated (4.4/5)