Skip to content
On this page

将摄氏温度转华氏温度

js
const celsiusToFahrenheit = (celsius) => celsius * 9/5 + 32;

celsiusToFahrenheit(100)
// 212

Released under the MIT License.