當前位置: 首頁>>代碼示例>>C#>>正文


C# BigInteger.Division操作符代碼示例

本文整理匯總了C#中System.Numerics.BigInteger.Division操作符的典型用法代碼示例。如果您正苦於以下問題:C# BigInteger.Division操作符的具體用法?C# BigInteger.Division怎麽用?C# BigInteger.Division使用的例子?那麽, 這裏精選的操作符代碼示例或許可以為您提供幫助。您也可以進一步了解該操作符所在System.Numerics.BigInteger的用法示例。


在下文中一共展示了BigInteger.Division操作符的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Main

//引入命名空間
using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      BigInteger divisor = BigInteger.Pow(Int64.MaxValue, 2);
      
      BigInteger[] dividends = { BigInteger.Multiply((BigInteger) Single.MaxValue, 2), 
                                 BigInteger.Parse("90612345123875509091827560007100099"), 
                                 BigInteger.One, 
                                 BigInteger.Multiply(Int32.MaxValue, Int64.MaxValue),
                                 divisor + BigInteger.One };

      // Divide each dividend by divisor in three different ways.
      foreach (BigInteger dividend in dividends)
      {
         BigInteger quotient;
         BigInteger remainder = 0;
         
         Console.WriteLine("Dividend: {0:N0}", dividend);
         Console.WriteLine("Divisor:  {0:N0}", divisor);
         Console.WriteLine("Results:");
         Console.WriteLine("   Using Divide method:     {0:N0}", 
                           BigInteger.Divide(dividend, divisor));
         Console.WriteLine("   Using Division operator: {0:N0}", 
                           dividend / divisor);
         quotient = BigInteger.DivRem(dividend, divisor, out remainder);
         Console.WriteLine("   Using DivRem method:     {0:N0}, remainder {1:N0}", 
                           quotient, remainder);

         Console.WriteLine();
      }            
   }
}
開發者ID:.NET開發者,項目名稱:System.Numerics,代碼行數:37,代碼來源:BigInteger.Division

輸出:

Dividend: 680,564,693,277,057,719,623,408,366,969,033,850,880
Divisor:  85,070,591,730,234,615,847,396,907,784,232,501,249
Results:
Using Divide method:     7
Using Division operator: 7
Using DivRem method:     7, remainder 85,070,551,165,415,408,691,630,012,479,406,342,137

Dividend: 90,612,345,123,875,509,091,827,560,007,100,099
Divisor:  85,070,591,730,234,615,847,396,907,784,232,501,249
Results:
Using Divide method:     0
Using Division operator: 0
Using DivRem method:     0, remainder 90,612,345,123,875,509,091,827,560,007,100,099

Dividend: 1
Divisor:  85,070,591,730,234,615,847,396,907,784,232,501,249
Results:
Using Divide method:     0
Using Division operator: 0
Using DivRem method:     0, remainder 1

Dividend: 19,807,040,619,342,712,359,383,728,129
Divisor:  85,070,591,730,234,615,847,396,907,784,232,501,249
Results:
Using Divide method:     0
Using Division operator: 0
Using DivRem method:     0, remainder 19,807,040,619,342,712,359,383,728,129

Dividend: 85,070,591,730,234,615,847,396,907,784,232,501,250
Divisor:  85,070,591,730,234,615,847,396,907,784,232,501,249
Results:
Using Divide method:     1
Using Division operator: 1
Using DivRem method:     1, remainder 1

示例2:

BigInteger num1 = 100045632194;
BigInteger num2 = 90329434;
BigInteger quotient = num1 / num2;
開發者ID:.NET開發者,項目名稱:System.Numerics,代碼行數:3,代碼來源:BigInteger.Division


注:本文中的System.Numerics.BigInteger.Division操作符示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。