I created a program and want to make sure it's correct. The original prompt is :Write a program called Lab11.cpp that reads a Fahrenheit degree as an input from the user, then converts it to Celsius and produces the desired output similar to Figure 1. The formula for the conversion is as follows, where C is Celsius and F is Fahrenheit:
C= 5/9*(F-32)
Hint: In C++, 5 / 9 is 0, but 5 / 9.0 is 0.55555. Create double variables for celsius and fahrenheit, and force floating point division by using a decimal number