Answer:
Written in Python Programming Language
DegreesF = float(input("Temperature (Fahrenheit): "))
DegreesC = 5 * (DegreesF - 32)/9
print("Temperature (Celsius): ",end = '')
print("%.2f" % round(DegreesC, 2))
Step-by-step explanation:
This line prompts user for input in Fahrenheit
DegreesF = float(input("Temperature (Fahrenheit): "))
This line calculates the equivalent in degree Celsius
DegreesC = 5 * (DegreesF - 32)/9
The next two lines prints the calculated degree Celsius and approximates to two decimal places
print("Temperature (Celsius): ",end = '')
print("%.2f" % round(DegreesC, 2))