Write a program that Converts degrees Fahrenheit to Celsius degree and vice versa: - first by entering degreeF and conve
Posted: Tue Jul 12, 2022 8:17 am
Write a program that Converts degrees Fahrenheit to Celsius degree and vice versa: - first by entering degreeF and converting the entered value to degreeC and printing out the result in celsius using the following conversion formula: degreeC= 5.0 / 9.0 * (degreesF - 32) - then by converting the degreeC calculated in the above formula to degreeF and printing out the result in Fahrenheit again using the following conversion formula: degreeF (9.0 / 5.0 degrees C + 32)