位。Golang 中的 Div()函数,示例
原文:https://www . geesforgeks . org/bits-div-function-in-golang-with-examples/
Go 语言在 bits 包的帮助下,为 bits 提供内置支持,以实现预声明的无符号整数类型的位计数和操作功能。这个包提供了 Div()函数,用来求(a,b)除以 c 的商和余数,即 q = (a,b)/c,r = (a,b)%c,被除数位的上半部分在参数 a,下半部分在参数 b,如果 c == 0(被零除)或 c < = a(商溢出),这个函数就会死机。要访问 Div()函数,您需要借助 import 关键字在程序中添加一个数学/位包。
语法:
func Div(a, b, c uint) (q, r uint)
参数:该函数取 uint 类型的三个参数,即 a、b、c。
返回值:这个函数返回 uint 类型的两个值,即 q 和 r,这里 q 称为商,r 称为余数。
例 1 :
// Golang program to illustrate bits.Div() Function
package main
import (
"fmt"
"math/bits"
)
// Main function
func main() {
// Finding quotient and remainder
// Using Div() function
q, r := bits.Div(1, 12, 2)
fmt.Println("Quotient:", q)
fmt.Println("Remainder:", r)
}
输出:
Quotient: 9223372036854775814
Remainder: 0
例 2:
// Golang program to illustrate bits.Div() Function
package main
import (
"fmt"
"math/bits"
)
// Main function
func main() {
// Finding quotient and remainder
// Using Div() function
var a, b, c uint = 1, 13, 3
q, r := bits.Div(a, b, c)
fmt.Println("Number 1:", a)
fmt.Println("Number 2:", b)
fmt.Println("Number 3:", c)
fmt.Println("Quotient:", q)
fmt.Println("Remainder:", r)
}
输出:
Number 1: 1
Number 2: 13
Number 3: 3
Quotient: 6148914691236517209
Remainder: 2
版权属于:月萌API www.moonapi.com,转载请注明出处