使用Go 的big.Int 有效地除以大量數字
當處理特別大的數字時,標準整數類型可能會不夠用。 Go 的「math/big」套件提供了 big.Int 類型,可以輕鬆處理任意精確度的整數。
問題:
給定兩個巨大的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>要除兩個big.Int 數字,我們使用big.Int 提供的Div() 方法。整型。此方法計算除法運算的商並傳回一個包含結果的新 big.Int 實例。 以下範例示範如何使用Div() 對big.Int 變數進行整數除法:
呼叫 Div() 方法進行整數除法,結果儲存在新的 big.Int 變數中。
<code class="text">First: 30414093201713378043612608166064768844377641568960512000000000000 Second: 6402373705728000 Division result: 4750440164794325701367714688167999176704000000000</code>
輸出:
示範如何在 Go 中使用 big.Int 的 Div() 方法高效地對大數進行整數除法。以上是如何使用 Go 的“big.Int”類型有效地對大量數字執行整數除法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!