📜  在 Golang 中查找两个数字的最大值

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

Go 语言为基本常量和数学函数提供内置支持,以在 math 包的帮助下对数字执行运算。借助 math 包提供的Max()函数,您可以在给定的两个数字中找到最大的数字。因此,您需要在 import 关键字的帮助下在程序中添加一个数学包来访问Max()函数
句法:

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

示例 1:

C
// Golang program to illustrate
// how to find the largest number
 
package main
 
import (
    "fmt"
    "math"
)
 
// Main function
func main() {
 
    // Finding largest number
    // among the given numbers
    // Using Max() function
    res_1 := math.Max(0, -0)
    res_2 := math.Max(-100, 100)
    res_3 := math.Max(45.6, 8.9)
    res_4 := math.Max(math.NaN(), 67)
 
    // 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)
 
}


C
// Golang program to illustrate
// how to find the largest number
 
package main
 
import (
    "fmt"
    "math"
)
 
// Main function
func main() {
 
    // Finding largest number
    // among the given numbers
    // Using Max() function
    nvalue_1 := math.Max(34, 67)
    nvalue_2 := math.Max(56.7, 90.8)
 
    // Adding maximum numbers
    res := nvalue_1 + nvalue_2
    fmt.Printf("%.2f + %.2f = %.2f",
            nvalue_1, nvalue_2, res)
 
}


输出:

Result 1: 0.0
Result 2: 100.0
Result 3: 45.6
Result 4: NaN

示例 2:

C

// Golang program to illustrate
// how to find the largest number
 
package main
 
import (
    "fmt"
    "math"
)
 
// Main function
func main() {
 
    // Finding largest number
    // among the given numbers
    // Using Max() function
    nvalue_1 := math.Max(34, 67)
    nvalue_2 := math.Max(56.7, 90.8)
 
    // Adding maximum numbers
    res := nvalue_1 + nvalue_2
    fmt.Printf("%.2f + %.2f = %.2f",
            nvalue_1, nvalue_2, res)
 
}

输出:

67.00 + 90.80 = 157.80