📜  Golang 中的 math.Hypot函数示例

📅  最后修改于: 2021-10-25 02:21:46             🧑  作者: Mango

Go 语言为基本常量和数学函数提供内置支持,以在 math 包的帮助下对数字执行运算。您可以借助math 包提供的Hypot()函数找到斜边,即 Sqrt(a*a + b*b)。因此,您需要借助 import 关键字在程序中添加一个数学包来访问 Hypot()函数。

句法:

func Hypot(a, b float64) float64
  • 如果像 Hypot(+Inf, b) 或 Hypot(-Inf, b) 一样在此函数传递 +Inf 或 -Inf,则此函数将返回 +Inf。
  • 如果像 Hypot(a, +Inf) 或 Hypot(a, -Inf) 一样在此函数传递 +Inf 或 -Inf,则此函数将返回 -Inf。
  • 如果像 Hypot(NaN, b) 或 Hypot(a, NaN) 一样在此函数传递 NaN,则此函数将返回 NaN。

示例 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)
  
}

输出:

Result 1: 5.0
Result 2: 6.3
Result 3: +Inf
Result 4: NaN

示例 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)
  
}

输出:

5.00000 + 6.32456 = 11.32456