float far, cel; cout << "Enter the temperature in Fahrenheit: "; cin >> far; cel = (far - 32) / 1.8; //(°F - 32) / 1.8 = °C cout << "The temperature of " << far << " in Celsius is: " << cel;