如何在 Go 中使用實數(shù)?例如:(627.71/640.26)^(1/30) = 0.999340349 --> correct result但隨著圍棋:fmt.Print(math.Pow((627.71 / 640.26), (1 / 30))) = 1 --> wrong
1 回答

眼眸繁星
TA貢獻1873條經(jīng)驗 獲得超9個贊
使用浮點(實數(shù))而不是整數(shù)除法。例如,
package main
import (
? ? "fmt"
? ? "math"
)
func main() {
? ? fmt.Print(math.Pow((627.71 / 640.26), (1.0 / 30.0)))
}
游樂場:https://play.golang.org/p/o7uVw9doaMu
輸出:
0.999340348749526
package main
import "fmt"
func main() {
? ? fmt.Println(1 / 30)? ? ?// integer division
? ? fmt.Println(1.0 / 30.0) // floating-point division
}
游樂場:https://play.golang.org/p/VW9vilCC9M8
輸出:
0
0.03333333333333333
Go 編程語言規(guī)范
整數(shù)文字
浮點字面量
算術(shù)運算符
整數(shù)運算符
對于兩個整數(shù)值x和y,整數(shù)商q = x / y和余數(shù)r = x % y滿足以下關(guān)系:
x?=?q*y?+?r??and??|r|?<?|y|
x / y 截斷為零(“截斷除法”)。
- 1 回答
- 0 關(guān)注
- 110 瀏覽
添加回答
舉報
0/150
提交
取消