Create an algorithm that will prompt a user to answer the following question. "Do you want to convert the Fahrenheit temperature to Celsius?' While the user answers yes, the algorithm will prompt a user for a Fahrenheit temperature, convert the Fahrenheit temperature to Celsius, and print the Celsius temperature. Write the algorithm using pseudocode, and create a desk check using at least one set of test data. The formula used to convert Fahrenheit to Celsius is: °C = (°F - 32) / 1.8 Example: 68 °F Celsius = (68-32) / 1.8 Celsius = (36) / 1.8 Celsius = 20
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Create an algorithm that will prompt a user to answer the following question. "Do you want to convert the Fahrenheit temperature to ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Create an algorithm that will prompt a user to answer the following question. "Do you want to convert the Fahrenheit temperature to Celsius?