Ask Question
19 August, 03:34

Write a program that converst the temperature from Celcius to Fahrenheit. The formula is: F (9/5) C+32

+2
Answers (2)
  1. 19 August, 03:35
    0
    celcius = float (input ())

    farenheit = (9/5) * celcius + 32

    print (farenheit)

    Explanation:

    Step 1 read the celcius data

    celcius = float (input ())

    Step 2 calculate the farenheit data with the equetion (9/5) C+32

    farenheit = (9/5) * celcius + 32

    Step 3 show results

    print (farenheit)
  2. 19 August, 04:00
    0
    F

    =

    9

    5

    C

    +

    32

    Subtract 32 from both sides:

    F

    -

    32

    =

    9

    5

    C

    Multiply both sides by 5:

    5

    (

    F

    -

    32

    )

    =

    9

    C

    Divide both sides by 9:

    5

    9

    (

    F

    -

    32

    )

    =

    C

    or

    C

    =

    5

    9

    (

    F

    -

    32

    )
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a program that converst the temperature from Celcius to Fahrenheit. The formula is: F (9/5) C+32 ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers