Question: Write a program that reads a Celsius degree in a double value from the console, then converts it to Fahrenheit, and displays the result. The
Write a program that reads a Celsius degree in a double value from the console, then converts it to Fahrenheit, and displays the result. The formula for the conversion is as follows:
fahrenheit = (9 / 5) * celsius + 32
Hint: In Java, 9 / 5 is 1, but 9.0 / 5 is 1.8.
Here is a sample run:
Enter a degree in Celsius: 43.5 43.5 Celsius is 110.3 Fahrenheit
Step by Step Solution
3.33 Rating (165 Votes )
There are 3 Steps involved in it
import javautilScanner public class Exercise0201 Main method public static void mainString ... View full answer
Get step-by-step solutions from verified subject matter experts
