Wiki User
∙ 2016-07-14 13:05:24160 Celsius = 320 Fahrenheit
Wiki User
∙ 2016-07-14 13:05:24320 f = 160 c
yes
At approximately -12.3 °F the equivalent temperature in Celsius is -24.6 °C. This is the only temperature at which the value of the temperature in Celsius is double that of the equivalent Fahrenheit temperature. To be more precise, the temperatures are -12 4/13 °F and -24 8/13 °C.
Use the following functions: double celsius2fahrenheit (double celsius) { return celsius * 9 / 5 + 32; } double fahrenheit2celsius (double fahrenheit) { return (fahrenheit - 32) * 5 / 9; }
double Fahrenheit = 100.0; // Just an exampledouble centigrade = (Fahrenheit - 32) * 5 / 9;System.out.println("The temperature in centigrade is " + centigrade);
double celsius_to_fahrenheit (double celsius) {return celsius * 9 / 5 + 32;} double fahrenheit_to_celsius (double fahrenheit) {return (fahrenheit - 32) * 5 / 9;}
#include<iostream> double celsius(double fahrenheit) { return((fahrenheit-32)*5/9); } double fahrenheit(double celsius) { return(celsius*9/5+32); } int main() { double f, c; c = celsius( 32.0); // c 212.0 return(0); }
To convert from celsius to fahrenheit, you multiply by 9/5 and add 32. A rough conversion is to double and add 30.
To double the pressure, you will need double the temperature. Note that you have to use the absolute temperature (usually Kelvin) for this calculation. So, for example, if you start off at 100 degrees Celsius, you convert that to Kelvin (add 273 to convert from Celsius to Kelvin), double the number to get double the temperature, then convert back to Celsius (subtract 273 from the previous result).Similarly, if you start out at a certain number of degrees Fahrenheit, you must first convert that to Kelvin, then double the result, and finally convert this last result back to Fahrenheit.
double celsius (double fahrenheit) { return (fahrenheit - 32.) * 5. / 9.; }
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 + 32In this case, the answer is about 43.7 degrees Fahrenheit.
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); } }