The formula for converting a temperature in Fahrenheit what temperature in Celsius is C equals 5/9 times The formula for converting a temperature in Fahrenheit what temperature in Celsius is C equals 5/9(F -32), where F is the temperature in Fahrenheit and c is the temperature in Celsius. What Celsius temperature is equal to 122F

Respuesta :

Answer:

50 degrees C

Step-by-step explanation:

5/9(F-32)

5/9=.55555556

(122-32)=90

90×.555555556=50

Answer:

C = int(input('enter your input:'))

F = (C * (9 / 5) + 32)

print('{} in Fahrenheit is {}'. format(C, F))

Step-by-step explanation:

C = int(input('enter your input:')) #def C with int inuput

F = (C * (9 / 5) + 32) #formula to convert

print('{} in Fahrenheit is {}'. format(C, F)) # Print function format str int input to conversion