C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#Math.BigMulメソッド


Math.BigMul()メソッドを使用して、2つの32ビット数の積を求めます。

以下は私たちの2つの数字です。

int one = 345272828;
int two = 887685744;

今、製品を入手してください。

long res;
res = Math.BigMul(one, two);

using System;
using System.Globalization;
class Demo {
   static void Main() {
      int one = 345272828;
      int two = 887685744;
      long res;
      res = Math.BigMul(one, two);
      Console.WriteLine("{0} * {1} = {2}", one, two, res);
   }
}

出力

345272828 * 887685744 = 306493767206164032

  1. C#のMath.Exp()メソッド

    C#のMath.Exp()メソッドは、eを指定された累乗に戻すために使用されます。 構文 public static double Exp (double val); ここで、ヴァルは力です。 ValがNaNまたはPositiveInfinityと等しい場合、その値が返されます。ただし、dがNegativeInfinityと等しい場合は、0が返されます。 Math.Exp()メソッドを実装する例を見てみましょう- 例 using System; public class Demo {    public static void Main(){    

  2. C#Math.BigMulメソッド

    Math.BigMul()メソッドを使用して、2つの32ビット数の積を求めます。 以下は私たちの2つの数字です。 int one = 345272828; int two = 887685744; 今、製品を入手してください。 long res; res = Math.BigMul(one, two); 例 using System; using System.Globalization; class Demo {    static void Main() {       int one = 345272828;