DevBits
Home
Atlas
Play
About
Sign up
Log in
All
Go
Math
Compute Cube Root
Compute Cube Root
Post Example
Examples in
Go
Compute Cube Root in Go
by yhuang
Go
fmt
fmt.Println
math
math.Cbrt
package main import ( "fmt" "math" ) func main() { fmt.Println(math.Cbrt(27)) }