Presta atención ya que en este post hallarás el arreglo que buscas.Esta división ha sido analizado por nuestros especialistas para garantizar la calidad y veracidad de nuestro post.
Ejemplo 1: mcm de n números python
# importing the moduleimport math
# function to calculate LCMdefLCMofArray(a):
lcm = a[0]for i inrange(1,len(a)):
lcm = lcm*a[i]//math.gcd(lcm, a[i])return lcm
# array of integers
arr1 =[1,2,3]
arr2 =[2,3,4]
arr3 =[3,4,5]
arr4 =[2,4,6,8]
arr5 =[8,4,12,40,26,28]print("LCM of arr1 elements:", LCMofArray(arr1))print("LCM of arr2 elements:", LCMofArray(arr2))print("LCM of arr3 elements:", LCMofArray(arr3))print("LCM of arr4 elements:", LCMofArray(arr4))print("LCM of arr5 elements:", LCMofArray(arr5))
Ejemplo 2: la mejor manera de encontrar el mcm de un número python
# Python Program to find the L.C.M. of two input number#naive methoddefcompute_lcm(x, y):# choose the greater numberif x > y:
greater = x
else:
greater = y
while(True):if((greater % x ==0)and(greater % y ==0)):
lcm = greater
break
greater +=1return lcm
num1 =54
num2 =24print("The L.C.M. is", compute_lcm(num1, num2))
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)