answersLogoWhite

0

Start by taking the number in Celsius and multiply it by 9. Then divide that number by 5, and then add 32. This is how you convert Celsius to Fahrenheit or use the equation F = (9/5)C + 32

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What 25 c calculate to in Fahrenheit?

79 Fahrenheit= 25 Centigrade


What is 47 degrees Fahrenheit in centigrade?

47 degrees Fahrenheit is 8.33333 centigrade


What is the difference between Fahrenheit and Centigrade degrees?

Fahrenheit = 5/9 ( Centigrade - 32)


How many Fahrenheit is a centigrade?

A Fahrenheit degree is 5/9 the size of a centigrade degree.


What is 100 degrees Fahrenheit converted into centigrade?

100 degrees Fahrenheit = 37.78 degrees Centigrade


How do you calculate temperature from Fahrenheit to celsius?

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


What is 98 Fahrenheit in centigrade?

98 Fahrenheit is exactly 36.66666666666667 degrees centigrade.


82 degrees Fahrenheit in centigrade is?

C/5=(F-32)/9 Where, F=Degrees Fahrenheit, C=Degrees Centigrade So, if F=82 in the above formula, I am certain you can calculate C. Good Luck


What is the Fahrenheit equivalent to zero degrees centigrade?

The Fahrenheit equivalent to zero degrees Centigrade is 32. Centigrade is another name for Celsius, and zero Celsius is the same as zero centigrade.


What is 116.6 degrees Fahrenheit in centigrade?

116.6 degrees Fahrenheit equals 47 degrees Centigrade or Celsius


What is 70 Fahrenheit to degrees centigrade?

70 degrees Fahrenheit = 21.11 degrees Centigrade.


Write a Program in perl to convert given temperature from centigrade to Fahrenheit?

Here's a simple Perl program to convert temperature from Centigrade to Fahrenheit: #!/usr/bin/perl use strict; use warnings; print "Enter temperature in Centigrade: "; my $centigrade = <STDIN>; chomp($centigrade); my $fahrenheit = ($centigrade * 9/5) + 32; print "$centigrade°C is $fahrenheit°F\n"; This program prompts the user to enter a temperature in Centigrade, then calculates and displays the equivalent temperature in Fahrenheit using the conversion formula.