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


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


在C#中,BigMul()是方法类方法。此方法用于计算两个32位数字的全积。

用法:

public static long BigMul(int a, int b)

参数:


  • a:这是第一个要相乘的数字,并且此参数的类型为System.Int32。
    b:这是要相乘的第二个数字,并且此参数的类型为System.Int32

返回类型:此方法返回一个包含指定数字乘积的数字,并且此方法的返回类型为System.Int64。

例:

// C# program to demonstarte the  
// Math.BigMul() method 
using System; 
namespace ConsoleApplication1 { 
  
class Geeks { 
  
    // Main Method 
    static void Main(string[] args) 
    { 
  
        // defining two variable of type 
        //  System.Int32 
        Int32 x1 = 233232322; 
        Int32 x2 = 189222338; 
  
        // Using BigMul( ) method and storing  
        // result into a long(Int64) variable 
        long product = Math.BigMul(x1, x2); 
  
        // Getting the output 
        Console.WriteLine("The product of the two numbers is " + product); 
    } 
} 
}
输出:
The product of the two numbers is 44132765266008836


相关用法


注:本文由纯净天空筛选整理自keshav_786大神的英文原创作品 C# | Math.BigMul() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。