使用 Go 的 big.Int 有效地除以大量数字
当处理特别大的数字时,标准整数类型可能会不够用。 Go 的“math/big”包提供了 big.Int 类型,可以轻松处理任意精度的整数。
问题:
给定两个巨大的 big.Int
答案:
要除两个 big.Int 数字,我们使用 big.Int 提供的 Div() 方法。整型。此方法计算除法运算的商并返回一个包含结果的新 big.Int 实例。
以下示例演示如何使用 Div() 对 big.Int 变量进行整数除法:
<code class="go">package main import ( "fmt" "math/big" ) func main() { // Initialize two big.Int variables with large factorials first := new(big.Int).MulRange(1, 50) second := new(big.Int).MulRange(1, 18) // Print the values of the two big.Int variables fmt.Printf("First: %s\n", first.String()) fmt.Printf("Second: %s\n", second.String()) // Perform division using the Div() method result := new(big.Int).Div(first, second) // Print the result of the division fmt.Printf("Division result: %s\n", result.String()) }</code>
在这个例子中:
输出:
<code class="text">First: 30414093201713378043612608166064768844377641568960512000000000000 Second: 6402373705728000 Division result: 4750440164794325701367714688167999176704000000000</code>
演示了如何在 Go 中使用 big.Int 的 Div() 方法高效地对大数进行整数除法。
以上是如何使用 Go 的“big.Int”类型有效地对大量数字执行整数除法?的详细内容。更多信息请关注PHP中文网其他相关文章!