“LCM dalam Python” Kode Jawaban

Perpustakaan LCM Math Python

from math import gcd
def lcm(a,b):
  return a*b/(gcd(a,b))
print(lcm(12,70))
//output: 420
TheBeast5520

LCM dalam Python

def lcm(x, y):
   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 =int (input("enter the first nummber: "))
num2 = int (input("enter the second number: "))

print("The L.C.M. is",lcm(num1, num2))
Fouzan Mulla

Python Temukan LCM

def lcm(a, b):
        i = 1
        if a > b:
                c = a
                d = b
        else:
                c = b
                d = a
        while True:
                if ((c * i) / d).is_integer():
                        return c * i
                i += 1;
Noah's Nerdy Knowhow

Jawaban yang mirip dengan “LCM dalam Python”

Pertanyaan yang mirip dengan “LCM dalam Python”

Lebih banyak jawaban terkait untuk “LCM dalam Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya