Ask Question
22 November, 01:01

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

+2
Answers (2)
  1. 22 November, 02:25
    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

    )
  2. 22 November, 04:09
    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)
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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers