Go 语言为基本常量和数学函数提供内置支持,以在 math 包的帮助下对数字执行运算。借助math 包提供的Mod()函数,您可以找到指定 a/b 的 mod 或浮点余数。因此,您需要借助 import 关键字在程序中添加一个数学包来访问 Mod()函数。
句法:
func Min(a, b float64) float64
- 在此函数,结果的大小小于 b 且其符号与 a 的符号一致。
- 如果像 Mod(-Inf, b) 或 Mod(+Inf, b) 一样在此函数传递 -Inf 或 +Inf,则此函数将返回 NaN。
- 如果你像 Mod(NaN, b) 一样在这个函数传递 NaN,那么这个函数将返回 NaN。
- 如果像 Mod(a, 0) 一样在这个函数传递 b=0,那么这个函数将返回 NaN。
- 如果像 Mod(a, -Inf) 或 Mod(b, +Inf) 一样在此函数传递 -Inf 或 +Inf,则此函数将返回 a。
- 如果你像 Mod(a, NaN) 一样在这个函数传递 NaN,那么这个函数将返回 NaN。
示例 1:
// Golang program to illustrate how to
// find mod of the specified numbers
package main
import (
"fmt"
"math"
)
// Main function
func main() {
// Finding mod of the given numbers
// Using Mod() function
res_1 := math.Mod(60, 5)
res_2 := math.Mod(-100, 100)
res_3 := math.Mod(45.6, 8.9)
res_4 := math.Mod(math.NaN(), 67)
res_5 := math.Mod(math.Inf(1), 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)
fmt.Printf("\nResult 5: %.1f", res_5)
}
输出:
Result 1: 0.0
Result 2: -0.0
Result 3: 1.1
Result 4: NaN
Result 5: NaN
示例 2:
// Golang program to illustrate how to
// find mod of the specified numbers
package main
import (
"fmt"
"math"
)
// Main function
func main() {
// Finding mod of
// the given numbers
// Using Mod() function
nvalue_1 := math.Mod(34, 6)
nvalue_2 := math.Mod(56.7, 3.4)
// Finding sum of the given mod
res := nvalue_1 + nvalue_2
fmt.Printf("%.2f + %.2f = %.2f",
nvalue_1, nvalue_2, res)
}
输出:
4.00 + 2.30 = 6.30