#include int main() { // What do I need to store? float temperature_fahrenheit; float temperature_celsius; // What do I need from the user? // The temperature Fahrenheit printf("Enter the temperature in Fahrenheit: "); scanf("%f", &temperature_fahrenheit); // What do I need to do? // Convert Fahrenheit to Celsius temperature_celsius = ((temperature_fahrenheit - 32) * 5.0) / 9.0; // What do I need to tell the user? // The temperature in degrees celsius printf("%5.2fF = %5.2fC\n", temperature_fahrenheit, temperature_celsius); }