Computer Science, asked by sharan7393, 11 months ago

In analog to the example, write a script that asks users for the temperature in F and prints the temperature in C.

Answers

Answered by Abhis506
0

Explanation:

The answer is in the attachment

Attachments:
Answered by NirmalPandya
2

•In analog to the example, a script that asks users for the temperature in F and prints the temperature in C goes likewise:

•# Program to convert temperature from F into C.

• > > > fahrenheit = input (“Entry the temperature in F : “)

> > > centigrade = (fahrenheit – 32) 8 5/9.0

> > > print “The equivalent temperature in centigrade is”, centigrade

> > > print

Similar questions