Hey Y'all, I cant seem to get the correct answer to this question:
Write a program that finds the temperature, as an integer, that is the same in both Celsius and Fahrenheit. Recall that the temperature in Fahrenheit is nine-fifths of the temperature in Celcius, plus 32.
Your program should use two integer variables for temperature in F & C, initialize the temperature to 100 Celsius. Using a loop, decrement the Celsius value and compute Fahrenheit until the two values are the same. Print out intermediate results inside the loop while testing your program.