Golang math.Hypot函数的使用示例
Go语言提供了基本常量和数学函数的内置支持,以便通过math包执行数字操作。您可以使用math包提供的Hypot()函数找到斜边,即Sqrt(aa+bb)。因此,您需要在程序中添加一个math包,以便通过import关键字访问Hypot()函数。
语法:
func Hypot(a, b float64) float64
- 如果您在此函数中传递+Inf或-Inf,如Hypot(+Inf,b)或Hypot(-Inf,b),则此函数将返回+Inf。
- 如果您在此函数中传递+Inf或-Inf,例如Hypot(a,+Inf)或Hypot(a,-Inf),则此函数将返回-Inf。
- 如果您在此函数中传递NaN,如Hypot(NaN,b)或Hypot(a,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