Computer Science, asked by winterbs819, 8 hours ago

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 xitzdarkboyx
0

Answer:

Use the following formulas for temperature conversion:

fahrenheit = (9.0 / 5) * celsius + 32

celsius = (5.0 / 9) * (fahrenheit - 32)

Similar questions