如何在Go中使用实数?
例如:
(627.71/640.26)^(1/30) = 0.999340349 --> correct result
但是Go:
fmt.Print(math.Pow((627.71 / 640.26), (1 / 30))) = 1 --> wrong
math go
go ×1
math ×1