#include using namespace std; int main() { // Get Fahrenheit from user double tempF; cout << "Please enter the Fahrenheit temp: "; cin >> tempF; // Compute temp in Celsius double tempC; tempC = (5.0/9.0)*(tempF-32); // Output result cout << "That temp in Celsius is: " << tempC; return 0; }