Math.BigMul() 메서드를 사용하여 두 32비트 숫자의 곱을 찾습니다.
다음은 두 가지 번호입니다.
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