当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。