This is for C++ please read the question carefully and provide the code. Write a program in C++ to convert temperature in Fahrenheit to Celsius using variables. The formula is: degrees Celsius = subtract 32 from degrees Fahrenheit and then multiply by 5/9. Create the variables you will need to do this calculation. Make both the Fahrenheit temperature and Celsius temperature variables doubles. 32 is an int, 5 and 9 are doubles. The Fahrenheit temperature is 95. Display the answer is this format: The temperature is 95 degrees Fahrenheit, or --- degrees Celsius.