Write a program to store temperature in Fahrenheit in a double variable F. Use the formula C = 5/9(F - 32) to convert it into Celsius (use variable C for Celsius). Print the original temperature in Fahrenheit as well as the converted temperature in Celsius.
*FASTT*
Answers
Answered by
0
Answer:
see below
Explanation:
F=float(input("enter temp."))
C=5/9(F-32)
print C
print F
note use the variables under bracket in print option ok
Similar questions