Question
Write a C++ program that prompts a user to enter a temperature in Fahrenheit as a real number. After the temperature is entered display the
Write a C++ program that prompts a user to enter a temperature in Fahrenheit as a real number. After the temperature is entered display the temperature in Celsius. Your program will then prompt the user if they want to continue. If the character n or N is entered the program will stop; otherwise, the program will continue. After your program stops accepting temperatures display the average of all the temperatures entered in both Fahrenheit and Celsius. Be sure to use a C++ function to compute the conversion from Fahrenheit to Celsius.
Enter a temperature as Fahrenheit: 98.6
98.6F is 37.0C
Do you want to continue (Y/N)?
Y
Enter a temperature as Fahrenheit: 212.0
212.0F is 100.0C
Do you want to continue (Y/N)
N
The averages are 155.3F, and 68.5C
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started