“Как найти LCM из 2 чисел в Python” Ответ

Как найти LCM из 2 чисел в Python

# Every line is written with precision
# Go trough every line.
# line it self will explain most of the doughts.

num_first = int(input("Enter a number: ")) # taking firsr number form user
num_second = int(input("Enter second number: ")) # taking second number form user

maxnum = max(num_first,num_second) finding maxium of the inputed numbers

while(True):
    if(maxnum%num_first == 0 and maxnum%num_second == 0):
        break # if a common number divides both then it will break the 
        #loop else it will go on until it find the number
    maxnum = maxnum + 1

print(f"LCM of {a} and {b} is {maxnum}")

// Thanks for reading....
WinReck

Python Найти 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

Ответы похожие на “Как найти LCM из 2 чисел в Python”

Вопросы похожие на “Как найти LCM из 2 чисел в Python”

Больше похожих ответов на “Как найти LCM из 2 чисел в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования