float farenheit_to_celsius(float farenheit) { return (farenheit - 32.0) / 1.8; } float celsius_to_farenheit(float celsius) { return (celsius * 1.8) + 32.0; }