go語言基礎 數學包math
阿新 • • 發佈:2019-01-07
介紹幾個math包下常用的方法
func main() {
/*
math包:
*/
i := -100
fmt.Println(math.Abs(float64(i))) //絕對值
fmt.Println(math.Ceil(5.1)) //向上取整
fmt.Println(math.Floor(5.8)) //向下取整
fmt.Println(math.Mod(11, 3)) //取餘數,同11%3
fmt.Println(math.Modf(5.26)) //取整數,取小數
fmt.Println (math.Pow(3, 2)) //x的y次方
fmt.Println(math.Pow10(4)) // 10的n次方
fmt.Println(math.Sqrt(9)) //開平方
fmt.Println(math.Cbrt(8)) //開立方
fmt.Println(math.Pi)
}
結果
100
6
5
2
5 0.2599999999999998
9
10000
3
2
3.141592653589793