answersLogoWhite

0

subtract 40, multiply by 9/5, then add 40

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Program to convert given temperature from centigrade to Fahrenheit in pearl?

Here's a simple Perl program to convert a given temperature from Celsius to Fahrenheit: # Input temperature in Celsius my $celsius = 20; # Convert Celsius to Fahrenheit my $fahrenheit = ($celsius * 9/5) + 32; # Print the result print "$celsius degrees Celsius is equal to $fahrenheit degrees Fahrenheit\n"; You can replace the value of $celsius with any temperature you want to convert.


Write a program to convert temperature degrees celsius to degrees fahrenheit?

Sure, here is a simple Python program to convert temperature from degrees Celsius to degrees Fahrenheit: celsius = float(input("Enter temperature in Celsius: ")) fahrenheit = (celsius * 9/5) + 32 print("Temperature in Fahrenheit: ", fahrenheit)


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


How can one convert temperature in Celsius to Fahrenheit?

To convert temperature in Celsius to Fahrenheit, use the formula: Fahrenheit = (Celsius * 9/5) + 32. Simply multiply the temperature in Celsius by 9/5 and then add 32 to get the temperature in Fahrenheit.


What is the formula for temperature in Celsius or Fahrenheit?

The formula to convert Celsius to Fahrenheit is: F = (C x 9/5) + 32. The formula to convert Fahrenheit to Celsius is: C = (F - 32) x 5/9.


How do you convert celsius ti Fahrenheit?

Use this formula to convert degrees Celsius (C) to degrees Fahrenheit (F): (C x 1.8) + 32 = F


What formula is converted from Celsius to Fahrenheit?

To convert Celsius to Fahrenheit, you can use the formula: Fahrenheit = (Celsius x 9/5) + 32. Simply multiply the Celsius temperature by 9/5 and then add 32 to get the equivalent in Fahrenheit.


What is 147 Fahrenheit to Celsius?

147 degrees Fahrenheit is approximately 64 degrees Celsius. You can convert Fahrenheit to Celsius by subtracting 32 from the Fahrenheit temperature and then multiplying by 5/9.


How do convert Celsius into Fahrenheit?

Use this formula to convert degrees Celsius (C) to degrees Fahrenheit (F): (C x 1.8) + 32 = F


If temperature is 2farenheit what is the temperature in Celsius?

Temperature is easy to convert from Fahrenheit to Celsius yourself. You can use the formula Tc = (5/9)*(Tf-32) where Tc = temperature in degrees Celsius, Tf = temperature in degrees Fahrenheit. 2 F is -17 C.


How do you convert degree into frehenheit?

To convert degrees Celsius to Fahrenheit, you can use the formula: Fahrenheit = (Celsius x 9/5) + 32. Multiply the Celsius temperature by 9/5 and then add 32 to get the Fahrenheit temperature.


How do you convert -1.69 celsius into Fahrenheit?

To convert -1.69 degrees Celsius to Fahrenheit, use the formula: F = (C * 9/5) + 32 Where C is the temperature in Celsius and F is the temperature in Fahrenheit. Plugging in -1.69 for C, we get -1.69 * 9/5 + 32 = 28.502 Fahrenheit.