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