Question: What is wrong with this formula to convert from Celsius to Fahrenheit

degF = 5/9*(c+32)


Solution: Should be float.
degF = (5.0/9.0)*(c+32)