Returns the least common multiple of two integers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigInteger LeastCommonMultiple(
BigInteger a,
BigInteger b
)
Public Shared Function LeastCommonMultiple (
a As BigInteger,
b As BigInteger
) As BigInteger
public:
static BigInteger LeastCommonMultiple(
BigInteger a,
BigInteger b
)
static member LeastCommonMultiple :
a : BigInteger *
b : BigInteger -> BigInteger
Parameters
- a
- Type: Extreme.MathematicsBigInteger
A BigInteger. - b
- Type: Extreme.MathematicsBigInteger
A BigInteger.
Return Value
Type:
BigIntegerThe least common multiple of
a
and
b.
Reference