[back] [prev] [next] [index] [root]
c := IntLcm(a, b);
integer | c |
|
integer | a |
|
integer | b |
kash> IntLcm(345, 6540); 150420 kash> IntLcm(-345, 6540); 150420 kash> IntLcm(-345, -6540); 150420 kash> IntLcm(345, -6540); 150420 kash> IntLcm(0, 1); 0 kash> IntLcm(1, 0); 0 kash> IntLcm(0, 0); > 0
<- back[back] [prev] [next] [index] [root]