📜  Golang 中的 math.Dim()函数示例

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

Go 语言为基本常量和数学函数提供内置支持,以在 math 包的帮助下对数字执行运算。 math 包提供的Dim()函数返回ab 或 0最大值。因此,要访问此函数,您需要借助 import 关键字在程序中添加一个数学包。

句法:

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

示例 1:

// Golang program to illustrate the dim function
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Using Dim() function
    res_1 := math.Dim(2, -3)
    res_2 := math.Dim(8, -1)
    res_3 := math.Dim(-4, -2)
  
    // Displaying the result
    fmt.Printf("Result 1: %.1f", res_1)
    fmt.Printf("\nResult 2: %.1f", res_2)
    fmt.Printf("\nResult 3: %.1f", res_3)
  
}

输出:

Result 1: 5.0
Result 2: 9.0
Result 3: 0.0

示例 2:

// Golang program to illustrate the dim function
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Using Dim() function
    nvalue_1 := math.Dim(3, -1)
    nvalue_2 := math.Dim(4, 3)
    res := nvalue_1 + nvalue_2
    fmt.Printf("%.1f + %.1f = %.1f",
            nvalue_1, nvalue_2, res)
  
}

输出:

4.0 + 1.0 = 5.0