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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!