Advertisements
Advertisements
प्रश्न
Write a Python code to find the L.C.M. of two numbers.
उत्तर
Program:
# Python Program to find the L.C.M. of two input number
defcompute_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)):
1cm = greater
break
greater += 1
return 1cm
num1=int(input(//Enter first number=”))
num2=int(input(“Enter second number=”))
print
(“The L.C.M. is”, compute_lcm(num1, num2))
Output:
Enter first number=8
Enter second number=4
The L.C.M. is 8.
APPEARS IN
संबंधित प्रश्न
A Function which calls itself is called as ______
Read the following statement and choose the correct statement.
In Python, you don’t have to mention the specific data types while defining the function.
Write the different types of functions.
How to set the limit for recursive function? Give an example.
Write a Python code to check whether a given year is a leap year or not.
Explain the different types of functions with an example.
Explain the following built-in function.
chr()
Explain the following built-in function.
round()
Explain the following built-in function.
type()
Explain the following built-in function.
pow()