Cookies management by TermsFeed Cookie Consent

🟦 Square root in Go

shorts numbers math

To find the square root of a specified number in Go, use the Sqrt() function from the math package.

package main

import (
    "fmt"
    "math"
)

func main() {
    fmt.Println(math.Sqrt(2))
}

Output:

1.4142135623730951

Thank you for being on our site 😊. If you like our tutorials and examples, please consider supporting us with a cup of coffee and we'll turn it into more great Go examples.

Have a great day!

Buy Me A Coffee

🧊 Cube root in Go

shorts numbers math

🍰 The maximum and minimum value of the int types in Go

shorts numbers math

📊 The maximum and minimum value of the float types in Go

shorts numbers math