Go 语言为基本常量和数学函数提供内置支持,以在 math 包的帮助下对数字执行运算。借助math 包提供的Min()函数,您可以找到给定的两个数字中最小的数字。因此,您需要在 import 关键字的帮助下在程序中添加一个数学包来访问 Min()函数。
句法:
func Min(a, b float64) float64
- 如果像 Min(-Inf, b) 或 Min(a, -Inf) 一样在此函数传递 -Inf,则此函数将返回 -Inf。
- 如果像 Min(NaN, b) 或 Min(a, NaN) 一样在此函数传递 NaN,则此函数将返回 NaN。
- 如果您在此函数传递 -0 或 +0,例如 Min(-0, -0) 或 Min(-0, +0) 或 Min(-0, -0) 或 Min(+0, -0),则此函数将返回-0。
示例 1:
// Golang program to illustrate how
// to find the smallest number
package main
import (
"fmt"
"math"
)
// Main function
func main() {
// Finding smallest number
// among the given numbers
// Using Min() function
res_1 := math.Min(0, -0)
res_2 := math.Min(-100, 100)
res_3 := math.Min(45.6, 8.9)
res_4 := math.Min(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)
}
输出:
Result 1: 0.0
Result 2: -100.0
Result 3: 8.9
Result 4: NaN
示例 2:
// Golang program to illustrate how
// to find the smallest number
package main
import (
"fmt"
"math"
)
// Main function
func main() {
// Finding smallest number
// among the given numbers
// Using Min() function
nvalue_1 := math.Min(34, 67)
nvalue_2 := math.Min(56.7, 90.8)
// Adding minimum numbers
res := nvalue_1 + nvalue_2
fmt.Printf("%.2f + %.2f = %.2f",
nvalue_1, nvalue_2, res)
}
输出:
34.00 + 56.70 = 90.70