[solved]-1 Write C Program Temperature Conversion Give User Option Convert Fahrenheit Celsius Celsi Q39080052
1) Write a C++ program for temperatureconversion. Give the user the option to convert from Fahrenheit toCelsius or from Celsius to Fahrenheit and check for proper choices.The output should look like:
Type 1 to convert Fahrenheit toCelsius,
2to convert Celsius to Fahrenheit: 1
Enter Fahrenheit temperature: 70
In Celsius that is 21.1
Convert another? (y, n): n
Note: Celsius = 5/9 * (Fahrenheit– 32)
and Fahrenheit = Celsius * 9/5 + 32
Expert Answer
Answer to 1) Write a C++ program for temperature conversion. Give the user the option to convert from Fahrenheit to Celsius or fro… . . .
OR

