Purpose: Purpose:
You may make a copy of a worksheet and complete this activity, or simply type your answers in any text editor.
You may work alone or with at most two other students in this course.
Consider the following Java method
// Calculate_LCM takes two numbers and
// return LCM (Lease Common Multiplier) of the two numbers
// Examples:
// LCM of 12 and 15 = 2 * 2 * 3 * 5 = 60
// LCM of 12 and 18 = 2 * 2 * 3 * 3 = 36
// LCM of 15 and 18 = 2 * 3 * 3 * 5 = 90
public static int Calculate_LCM(int n1, int n2)
{
int result = 1;
int i = 2;
if (n1 > n2)
result = n1;
else
result = n2;
int temp = result;
while (result % n1 != 0 || result % n2 != 0)
{
result = temp * i;
i++;
}
return result;
}
| Test requirements | Test paths | Test cases (input values and expected output) |
| Test requirements | Test paths | Test cases (input values and expected output) |
| Test requirements | Test paths | Test cases (input values and expected output) |
| Test requirements | Test paths | Test cases (input values and expected output) |
(-2.5 points) for 24 hours late (submitted after 9-Oct-2025 11am EST, by 10-Oct-2025 11am EST)
(-5 points) for 48 hours late (submitted after 10-Oct-2025 11am EST, by 11-Oct-2025 11am EST)
Making your submission available to instructor and course staff is your responsibility; if we cannot access or open your file, you will not get credit. Be sure to test access to your file before the due date.
CC-BY-NC-SA 4.0 license.