C Write a program that finds the temperature as an integer
C++
Write a program that finds the temperature, as an integer , that is the same in both Celsius and Fahrenheit. The formula to convert from Celsius to Fahrenheit is: Fahrenheit = 32 + (nine fifths) times Celsius.
Your program should create two integer variables for the temperature in Celsius and Fahrenheit. Initialize the temperature to 100 degrees Celsius. In a loop, decrement the Celsius value and compute the corresponding temperature in Fahrenheit until the two values are the same.
Output should be:
The temperature is the same at -40
Solution
/* C++ Program with proper comments that finds the temperature, as an integer , that is the same in both Celsius and Fahrenheit. */ #include