Create a C++ program that:
displays a list of options to convert from Celsius to Fahrenheit, or from Fahrenheit to
Celsius
.
• user inputs char or int to pick option
. user inputs a number for conversion
.
display the conversion
also output a statement about how cold or hot it is, relative to the temperature
selected
ie, 100C is boiling hot, but OC is freezing cold
.
. Use the conditional compilation statement #ifdef VERBOSE to show cout
statements that detail the math process.
o "30C to F"
o "F= 32+ (9/5 * 30C)"
• "F = 86"
