Least common multiple: Difference between revisions

→‎{{header|Java}}: adding documentation
No edit summary
(→‎{{header|Java}}: adding documentation)
Line 137:
int multipleOfM = m, multipleOfN = n;
/* this section increases the value of multipleOfM until it is greater
/ than or equal to the multipleOfN, then does it again when the lesser
/ becomes the greater--if they aren't equal*/
if (m != n)
{
Anonymous user