answersLogoWhite

0

To convert from Fahrenheit to Celsius:

C° = (F° - 32)/9 x 5

  • Begin by subtracting 32 from the Fahrenheit number.
  • Divide the answer by 9.
  • Then multiply that answer by 5.
To convert from Celsius to Fahrenheit:

F° = (C° x 9/5) +32

  • Begin by multiplying the Celsius temperature by 9.
  • Divide the answer by 5.
  • Now add 32.

F= 9/5C+32 , so C=5/9(F-32)
User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

Why is -40 degrees Celsius equal to -40 degrees Fahrenheit?

0


How can get C and F?

Assuming you're talking about temperature conversion from Celsius to Fahrenheit and vice-versa...To convert from Celsius to Fahrenheit - Multiply by 1.8 then add 32.To convert from Fahrenheit to Celsius - Subtract 32 thendivide by 32.


Can you convert 37.4 Celsius to Fahrenheit?

Of course your can! You can convert any temperature from Celsius to Fahrenheit and vise versa. 37.4°C=99.32°F.


How do you convert degree Celsius and Fahrenheit on vice versa?

Use the following formula: 9*C = 5*(F - 32)


-10 Fahrenheit in Celsius?

Try a Google search for "-10 degrees Fahrenheit in degrees celsius". That'll give you the answer.------------------------------------------The formula to convert Fahrenheit to Celsius (or vice versa) is:C/100 = (F-32)/180Therefore by plugging in the -10 Fahrenheit it would beC/100 = (-10-32)/180C = -42/1.8C = -23.33I hope this helpsIzirbat


What is 72 degrees Fahrenheit in Celsius?

72 degrees Fahrenheit is 22.22 degrees Celsius. The conversion formula is °C = (°F - 32) * 5 / 9 Scroll down to related links and look at "How do you convert degrees Fahrenheit to degrees Celsius and vice versa". 22.22 C


What is the formula for converting degree Celsius to degree Fahrenheit and vise versa?

Use this equation to convert degrees Celsius/Centigrade (ºC) to degrees Fahrenheit (ºF): (ºC x 1.8) + 32 =ºFUse this equation to convert degrees Fahrenheit (ºF) to degrees Celsius/Centigrade (ºC): (ºF - 32) / 1.8 =ºC


Write a QBASIC program to convert a temperature in degrees Fahrenheit to degrees Celsius or vice versa depending on input?

CLS INPUT "Enter degrees in Celsius:";c INPUT "Enter degrees in Fahrenheit:";f a=(c*1.8)+32 b=5/9(f-32) PRINT c;"degree Celsius=" a;"degree Fahrenheit" PRINT f;"degree Fahrenheit=" b;"degree Celsius" end


What one is colder 60 degrees Celsius or 60 degrees Fahrenheit?

Its kind of improper to say one is colder b/c temperature measures heat. Cold is the absence of hea.. how ever it a simple math conversion for Celsius to Fahrenheit or vice versa... C x 1.8 + 32 = F so 60 degrees Celsius is 140 degrees Fahrenheit


How can you convert Celsius to Fahrenheit vice-versa?

Use this equation to convert degrees Celsius/Centigrade (ºC) to degrees Fahrenheit (ºF): [°F] = [°C] × 1.8 + 32Use this equation to convert degrees Fahrenheit (ºF) to degrees Celsius/Centigrade (ºC): [°C] = ([°F] - 32) × 0.556


How is centigrade converted to Fahrenheit?

To convert from degrees Fahrenheit to degrees Centigrade, subtract 32 degrees from the temperature and multiply the answer by 5, then divide the answer by 9.Fahrenheit and centigrade are two ways to measure temperature. The formula to convert Fahrenheit to Celsius is C=5/9 (F-32) and C to F is F = 9/5 (C+32).


Write JSP page use with java bean to convert Fahrenheit to Celsius and Celsius to Fahrenheit?

<html> <head> <title>Temperature Conversion</title> </head> <body> <h1>Temperature Conversion</h1> <p><%=request.getParameter("fahr") %> is <%= (Double.parseDouble(request.getParameter("fahr")) - 32) * 5 / 9 %> degrees celsius. </html>