208k views
4 votes
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

User Trogvar
by
6.5k points

2 Answers

5 votes

Answer:

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

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

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

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

User Xebeche
by
6.7k points
0 votes

Answer:

50 degrees C

Explanation:

5/9(F-32)

5/9=.55555556

(122-32)=90

90×.555555556=50

User Robertokl
by
6.0k points