介绍几个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