30秒学会 Golang 片段 · 2019年7月19日

30秒学会 Golang 片段 – FahrenheitToCelsius

Converts Fahrenheit to Celsius.

Follows the conversion formula C = (F - 32) * 5/9.

代码实现

func FahrenheitToCelsius(d float64) float64 {
    return (d - 32.0) * 5.0 / 9.0
}

使用样例

FahrenheitToCelsius(32.0) // 0.0