Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

write a program that changes a temperature reading fromFahrenheit to Celsius usi

ID: 3610147 • Letter: W

Question

write a program that changes a temperature reading fromFahrenheit to Celsius using the following formula: Celsius =(100 / 180) * (Fahrenheit - 32). Your program should prompt the user to enter a Fahrenheittemperature. It then calculates the equivalent Celsius temperatureand displays the results as shown below.         Enter thetemperature in Fahrenheit: 98.6         Fahrenheittemperature is: 98.6         Celsius temperatureis:   37.0 write a program that changes a temperature reading fromFahrenheit to Celsius using the following formula: Celsius =(100 / 180) * (Fahrenheit - 32). Your program should prompt the user to enter a Fahrenheittemperature. It then calculates the equivalent Celsius temperatureand displays the results as shown below.         Enter thetemperature in Fahrenheit: 98.6         Fahrenheittemperature is: 98.6         Celsius temperatureis:   37.0

Explanation / Answer

Here's some simple psuedocode: fahrenheit = /* input from user*/ celsius = (5/9) * (fahrenheit -32); /* print fahrenheit */ /* print celsius */ Hope this helps