Returns the least common multiple of two integers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static int LeastCommonMultiple(
short a,
short b
)
Public Shared Function LeastCommonMultiple (
a As Short,
b As Short
) As Integer
public:
static int LeastCommonMultiple(
short a,
short b
)
static member LeastCommonMultiple :
a : int16 *
b : int16 -> int
Parameters
- a
- Type: SystemInt16
An integer. - b
- Type: SystemInt16
An integer.
Return Value
Type:
Int32The least common multiple of
a
and
b.
Reference