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.0Explanation / Answer
Here's some simple psuedocode: fahrenheit = /* input from user*/ celsius = (5/9) * (fahrenheit -32); /* print fahrenheit */ /* print celsius */ Hope this helpsRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.