Im in need of a C++ program that Converts between Fahrenheit to Celsius and vice
ID: 3639030 • Letter: I
Question
Im in need of a C++ program that Converts between Fahrenheit to Celsius and vice versa.
Also, if a few program explaining comments could be placed within the code, I would greatly appreciate it.
Guidlines follow below comments
string answer;
// Add code here to ask the user if he/she wants to convert from celsius to
// fahrenheit (enter "F") or fahrenheit to celsius ("C").
// The answer should be F or C. Use cin to read in the answer.
if (answer == "F") {
// converting from celsius to fahrenheit
// ask user for celsius value (using cout and cin)
// add code here to convert and print out fahrenheit value
} else {
// converting from F to C
// ask user for fahrenheit value.
// add code here to convert to celsius and print out value.
}