formula for the conversion of celsius to fahrenheit code example

Example 1: fahrenheit to celsius formula

cels = (fahr - 32.0) * 5.0/9.0; //Fahr to cels
fahr = (cels * 9.0/5.0) + 32.0; //Cels to fahr

Example 2: different formulas to convert celsius to fahrenheit

function fahrenheitToCelsius(fahrenheit) {
  return (((fahrenheit - 32) * 5) / 9).toFixed(1);
} // Using toFixed returns a decimal value

function celsiusToFahrenheit(celsius) {
  return ((9 * celsius) / 5 + 32).toFixed(1);
} // Better to multiply in this order for celsius

Tags:

C Example