write a function to find the lcm of three numbers and then through the results to find the main function
Answers
Answer:
If you want to get LCM of 3+ numbers you can use your method lcmFind in following way: int a = 2; int b = 3; int c = 5; LCM l = new LCM(); int lcm = l. lcmFind(l. lcmFind(a, b), c);
Explanation:
Answer:
# Python Program to find the L.C.M. of two input number
def compute_lcm(x, y):
# choose the greater number
if x > y:
greater = x
else:
greater = y
while(True):
if((greater % x == 0) and (greater % y == 0)):
lcm = greater
break
greater += 1
return lcm
num1 = 54
num2 = 24
print("The L.C.M. is", compute_lcm(num1, num2))
# Python program to find the L.C.M. of two input number
# This function computes GCD
def compute_gcd(x, y):
while(y):
x, y = y, x % y
return x
# This function computes LCM
def compute_lcm(x, y):
lcm = (x*y)//compute_gcd(x,y)
return lcm
num1 = 54
num2 = 24
print("The L.C.M. is", compute_lcm(num1, num2))
These are to be done using python script hope it is helpful