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
We use cookies
We use cookies and other tracking technologies to improve your browsing experience on our website, to show you personalized content and targeted ads, to analyze our website traffic, and to understand where our visitors are coming from.
Please disable your ad blocker 🙂. Our ads are not intrusive
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!