Take input for celcius temperature and convert it into Fahrenheit temperature and display it as output.
F = (1.8 × C) + 32.
Take input for Fahrenheit temperature and convert it into celcius temperature and display it as output.
C = (F - 32) / 1.8
In Python app
Answers
Answered by
0
Answer:
Fahrenheit_to_Celcius.py
f = int(input("Enter Fahrenheit - "))
print(f,"f =",(f-32)/1.8,"C")
Celsius_to_Fahrenheit.py
c = int(input("Enter Celsius - "))
print(f,"C =",(1.8 * c) +32 ,"F")
Request - please mark me as brainlist because I need it to go next level
Regards,
Rishav
Similar questions