AdvancedIntegerMathLCM Method
Computes the least common multiple of two integers.
Namespace: Meta.Numerics.FunctionsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static long LCM(
long u,
long v
)
Public Shared Function LCM (
u As Long,
v As Long
) As Long
public:
static long long LCM(
long long u,
long long v
)
static member LCM :
u : int64 *
v : int64 -> int64
- u Int64
- The first integer.
- v Int64
- The second integer.
Int64The least common multiple of
u and
v.