📅  最后修改于: 2022-03-11 15:02:19.251000             🧑  作者: Mango
function celsiusToFahrenheit(clesius) {
var fahrenheit = clesius * 9 / 5 + 32;
return fahrenheit;
}
console.log(celsiusToFahrenheit(4))
//Output: 39.2