Question
C++ The units the program must be designed to accept are: K - Kelvin C - Celsius R - Rankine F Fahrenheit A typical screen
C++
The units the program must be designed to accept are: K - Kelvin C - Celsius R - Rankine F Fahrenheit A typical screen display for two conversions is shown below: Input a temperature: 98.6 What are the units of that temperature: f What are the units to convert to: c 98.6 F is equivalent to 37 C Input a temperature: -40 What are the units of that temperature: c What are the units to convert to: f -40 C is equivalent to -40 F Input a temperature: 0 What are the units of that temperature: x What are the units to convert to: x No further conversions are needed. You should be able to input the units in either upper or lower case. Use a loop to continue to enter temperatures to convert. Data entry is ended by any character other that the four representing the units. This program must use the following functions: double ToK(double DegreesIn, char UnitsIn); double FromK(double DegreesK, char UnitsOut);
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