Question
C++ Code. Define a function called temperature_converte. This program converts a series of temperature readings from Celsius to Fahrenheit or vice-versa, depending on a choice
C++ Code.
Define a function called temperature_converte. This program converts a series of temperature readings from Celsius to Fahrenheit or vice-versa, depending on a choice made by the user. The commands, all in lower-case, are: ctof to convert from Celsius to Fahrenheit or ftoc to convert from Fahrenheit to Celsius or end to end the program. The program must continue to prompt for and convert temperature readings until the user issues the command end. Invalid commands are flagged as such. The formula to convert temperature is as follows Celsius to Fahrenheit: F = (C 9/5) + 32 Fahrenheit to Celsius: C = (F 32) x 5/9 The program must include the following message - 5 points Comments: your name Your class and section About the program as comment The temperature readings are all float values. The program must also display an informational message as shown in the following interaction. The output of the program should exactly match the following
Define a function called temperature_converte. This program converts a series of temperature readings from Celsius to Fahrenheit or vice-versa, depending on a choice made by the user The commands, all in lower-case, are: ctof to convert from Celsius to Fahrenheit or ftoc to convert from Fahrenheit to Celsius or end to end the program. The program must continue to prompt for and convert temperature readings until the user issues the command end. Invalid commands are flagged as such The formula to convert temperature is as follows Celsius to Fahrenheit: oF = (C 9/s) + 32 Fahrenheit to Celsius: C = (PF-32) x 5/9 The program must include the following message 5 points Comments: your name Your class and section About the program as comment The temperature readings are all float values. The program must also display an informational message as shown in the following interaction. The output of the program should exactly match the following This program converts a series of temperature readings from the Celsius to the Fahrenheit scale or vice-versa Enter ctof or ftoc or end ctof Enter Celsius reading: 100.0 100.0 Celsius is 212.0 Fahrenheit Enter ctof or ftoc or end sadt Invalid option Enter ctof or ftoc or end ftoc Enter Fahrenheit reading: 212.0 212.0 Fahrenheit is 100.0 Celsius Enter ctof or ftoc or end endStep 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