El lenguaje Go brinda soporte incorporado para constantes básicas y funciones matemáticas para realizar operaciones en los números con la ayuda del paquete matemático. Puede encontrar la hipotenusa, es decir, Sqrt(a*a + b*b) con la ayuda de la función Hypot() proporcionada por el paquete matemático . Por lo tanto, debe agregar un paquete matemático en su programa con la ayuda de la palabra clave import para acceder a la función Hypot().
Sintaxis:
func Hypot(a, b float64) float64
- Si pasa +Inf o -Inf en esta función como Hypot(+Inf, b) o Hypot(-Inf, b), entonces esta función devolverá +Inf.
- Si pasa +Inf o -Inf en esta función como Hypot(a, +Inf) o Hypot(a, -Inf), entonces esta función devolverá -Inf.
- Si pasa NaN en esta función como Hypot(NaN, b) o Hypot(a, NaN), entonces esta función devolverá NaN.
Ejemplo 1:
// Golang program to illustrate hypot() function package main import ( "fmt" "math" ) // Main function func main() { // Finding hypotenuse // Using Hypot() function res_1 := math.Hypot(3, 4) res_2 := math.Hypot(-2, 6) res_3 := math.Hypot(4, math.Inf(1)) res_4 := math.Hypot(math.NaN(), 5) // Displaying the result fmt.Printf("Result 1: %.1f", res_1) fmt.Printf("\nResult 2: %.1f", res_2) fmt.Printf("\nResult 3: %.1f", res_3) fmt.Printf("\nResult 4: %.1f", res_4) }
Producción:
Result 1: 5.0 Result 2: 6.3 Result 3: +Inf Result 4: NaN
Ejemplo 2:
// Golang program to illustrate hypot() function package main import ( "fmt" "math" ) // Main function func main() { // Finding hypotenuse // Using Hypot() function nvalue_1 := math.Hypot(3, 4) nvalue_2 := math.Hypot(-2, 6) res := nvalue_1 + nvalue_2 fmt.Printf("%.5f + %.5f = %.5f", nvalue_1, nvalue_2, res) }
Producción:
5.00000 + 6.32456 = 11.32456
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA