Write a class that contains the following two methods:
i) Public static double CelsiusToFarenheit(double Celsius)
ii) Public static double fahrenheitToCelsius(double Fahrenheit)
Use the following formulas for temperature conversion:
Answers
Answered by
0
Answer:
Use the following formulas for temperature conversion:
fahrenheit = (9.0 / 5) * celsius + 32
celsius = (5.0 / 9) * (fahrenheit - 32)
Similar questions