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);
}
}
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);
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
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; }
To convert Celsius to Fahrenheit - Multiply the Celsius value by 1.8 THEN add 32 To convert Fahrenheit to Celsius - Subtract 32 from the Fahrenheit value THEN Divide by 1.8
convert any given Celsius to Fahrenheit: (Celsius * 1.8) + 32 = Fahrenheit so (41 * 1.8) + 32 = 105.8 Fahrenheit
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.
Assuming you mean Fahrenheit, the answer is 95.9 degrees F.
The formula to convert Celsius to Fahrenheit is:(Celsius x 1.8) + 32 = Fahrenheit
101.5 degrees Fahrenheit = 38.61 degrees Celsius.
To convert Fahrenheit to Celsius, you can use the formula: Celsius = (Fahrenheit - 32) / 1.8. Substitute 87 for Fahrenheit: Celsius = (87 - 32) / 1.8 Celsius ≈ 30.56 degrees Celsius.
-18 degrees Celsius is equivalent to 0.4 degrees Fahrenheit. The formula to convert Celsius to Fahrenheit is: Fahrenheit = (Celsius x 9/5) + 32.
3.3 degrees celsius is 37.94 degrees fahrenheit.
325 F is 162.777778 or 162.78 degrees Celsius.
To convert from Celsius to Fahrenheit . F° = C° × 9 ⁄ 5 + 32.
To convert from Fahrenheit to Celsius, first subtract 32, then multiply by 100/180 To convert from Celsius to Fahrenheit, first multiply by 180/100, then add 32