Index
math
package main
import (
"fmt"
"math" // math
)
func main() {
}
Abs()
var f float64 = 12.3456
fmt.Println(math.Abs(-1)) // ->1
fmt.Println(math.Abs(1)) // ->1
Cbrt()
func Cbrt(x float64) float64
Ceil()
func Ceil(x float64) float64
Floor()
func Floor(x float64) float64
#Pow()
func Pow(x, y float64) float64
Round()
func Round(x float64) float64
var f float64 = 12.3456
fmt.Println(math.Round(f * 100) / 100) // ->12.35
fmt.Println(math.Round(f * 1000) / 1000) // ->12.346