float farenheitToCelsius(float farenheit) { return (farenheit - 32.0) / 1.8; } float celsiusToFarenheit(float celsius) { return (celsius * 1.8) + 32.0; }