當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Math BigMul()用法及代碼示例


在這裏,我們將了解Math 類的BigMul() 方法。此方法用於在乘以整數的最大值後返回long值。通常我們將兩個整數與最大值相乘,然後它不會產生實際輸出。所以我們需要用到Math類的BigMul()方法。

用法:

long Math.BigMul(int Val1, int Val2);

參數:

  • Val1:第一個相乘的數字。
  • Val2:要相乘的第二個數字。

返回值:

它返回一個長整數值。

程序:

下麵給出了演示使用Math 類的BigMul() 方法的源代碼。給定的程序已成功編譯並執行。

using System;

class Sample
{
    //Entry point of Program
    static public void Main()
    {
        int IntVal1 = 0;
        int IntVal2 = 0;
        long BigMultResult=0;
        long SimpleMultResult = 0;

        IntVal1 = Int32.MaxValue;
        IntVal2 = Int32.MaxValue;

        SimpleMultResult = IntVal1 * IntVal1;
        BigMultResult = Math.BigMul(IntVal1, IntVal2);

        Console.WriteLine("Result of Simple product of MaxValues:" + SimpleMultResult);  
        Console.WriteLine("Result of product of MaxValues using BigMul():" + BigMultResult);  
    }
}

輸出:

Result of Simple product of MaxValues:1
Result of product of MaxValues using BigMul():4611686014132420609
Press any key to continue . . .



相關用法


注:本文由純淨天空篩選整理自 C# program to demonstrate the use of BigMul() method of Math class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。