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
firstly take the temperature in Celsius and multiply 1.8. And add 32 degrees. The result is degrees Fahrenheit.
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);
Let us convert to Fahrenheit and you might see then whether the temperature is unlivable or not. Temperature Fahrenheit = (- 140o C)(1.80) + 32 = - 106.2o Fahrenheit ========================rather nippy, but perhaps livable with the proper conditions met!
import java.util.Scanner; public class Fahrenheit { public static void main(String args[]) { Scanner s=new Scanner(System.in); System.out.println("Enter the temperature in Celsius scale"); double f= s.nextDouble(); double c; c=(f-32)/1.8; System.out.println("Fahrenheit"); System.out.println( f); } }
0
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.
To convert one into the other. Temperature Fahrenheit = Temperature Celsius(1.80) + 32
Use this formula to convert degrees Celsius (C) to degrees Fahrenheit (F): (C x 1.8) + 32 = F
you can convert using this formula where (F) is the Fahrenheit you want to get and (C) is the Celsius you want to convert from
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.
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.
Use this formula to convert degrees Celsius (C) to degrees Fahrenheit (F): (C x 1.8) + 32 = F
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.
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.
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.
For conversion between fahrenheit, celsius, rankin and kelvin use the following formulas: Fahrenheit = Celsius * 9 / 5 + 32 Kelvin = Celsius + 273.15 Rankine = Fahrenheit + 459.6
3.3 degrees celsius is 37.94 degrees fahrenheit.