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
Here's a simple function that will convert Fahrenheit to Celsius for you: function toCelsius(fahrenheit:Number):Number{ var celsius:Number = (fahrenheit - 32) * (5/9); return celsius; } Use: // Converts 60 degrees Fahrenheit to Celsius var newTemperature:Number = toCelsius(60); trace(newTemperature);
0
What does 70 degrees Celsius convert to degrees Fahrenheit? Scroll down to related links and look at "Conversion of temperatures and formulas".
convertFtoC = function(F) {return (5/9)*(F-32) }convertCtoF = function(C) {return (9/5)*C + 32; }
That's wrong. That's not how you convert temperatures between Celsius and Fahrenheit.
To convert Celsius temperatures into Fahrenheit:Begin by multiplying the Celsius temperature by 9.Divide the answer by 5.Now add 32.122 Degrees Fahrenheit.
You can quickly estimate Fahrenheit temperatures from Celsius by doubling the Celsius temperature and adding 30. This will give you an approximate Fahrenheit equivalent. For example, if it's 20°C, double it to get 40, then add 30 to get 70°F.
76 degree Fahrenheit is 24.44 Celsius. You do the Math: To convert Fahrenheit temperatures into Celsius: Begin by subtracting 32 from the Fahrenheit number. Divide the answer by 9. Then multiply that answer by 5.
To convert Celsius to Fahrenheit, you can use the formula: (Celsius x 9/5) + 32. This formula will give you the equivalent temperature in Fahrenheit degrees.
To convert from Celsius to Fahrenheit: F = (C * 9/5) + 32 To convert from Fahrenheit to Celsius: C = (F - 32) * 5/9 To convert from Celsius to Kelvin: K = C + 273.15 To convert from Kelvin to Celsius: C = K - 273.15
I suggest you convert each of the Fahrenheit temperatures to Celsius (or the other way round, each of the Celsius temperatures to Fahrenheit), and then compare.
To convert from celsius to fahrenheit use the following formula : F = (C * 9/5) + 32
Formula for conversion between Fahrenheit and Celsius is: Fahrenheit=5/9*Celsius+32 Celsius =(Farenheit-32)*9/5
How to convert Fahrenheit temperatures to CelsiusSubtract 32o to adjust for the offset in the Fahrenheit scale.Multiply the result by 5/9.Example: convert 98.6o Fahrenheit to Celsius.98.6 - 32 = 66.666.6 * 5/9 = 333/9 = 37o C.
No. On the Celsius scale, the degree intervals are 1.8 times as large, so that a Celsius "degree" and a Fahrenheit "degree" are not the same thing. (see related question)
kelvin=celsius+273 Celsius=0.55(F-32) Fahrenheit=(1.8*celsius)+32