xxxxxxxxxx
function cToF(celsius)
{
var cTemp = celsius;
var cToFahr = cTemp * 9 / 5 + 32;
return cToFahr;
}
console.log(cToF(36))
function FtoC(fahrenheit){
let celcius = fahrenheit*5/9 -32;
return celcius;
}
console.log(FtoC(20));
xxxxxxxxxx
const celsiusToFahrenheit = celsius => celsius * 9/5 + 32;
const fahrenheitToCelsius = fahrenheit => (fahrenheit - 32) * 5/9;
// Examples
celsiusToFahrenheit(15); // 59
fahrenheitToCelsius(59); // 15
xxxxxxxxxx
function celsiusToFahrenheit(clesius) {
var fahrenheit = clesius * 9 / 5 + 32;
return fahrenheit;
}
console.log(celsiusToFahrenheit(4))
//Output: 39.2
xxxxxxxxxx
function fahrenheitToCelsius(fahrenheit) {
var celsius = (fahrenheit - 32) * 5 / 9;
return celsius;
}
console.log(fahrenheitToCelsius(64))
//Output: 17.77777777777778
xxxxxxxxxx
const CTF = celsius => celsius * 9/5 + 32;
const FTC = fahrenheit => (fahrenheit - 32) * 5/9;
xxxxxxxxxx
// Function to convert temperature from Fahrenheit to Celsius
function convertFahrenheitToCelsius(fahrenheit) {
return (fahrenheit - 32) * 5 / 9;
}
// Example usage
const fahrenheitTemperature = 100;
const celsiusTemperature = convertFahrenheitToCelsius(fahrenheitTemperature);
console.log(celsiusTemperature);