HCF FINDER USING PYTHON
Code-
def hcf(a , b):
if(b == 0):
return a
else:
return hcf(b, a % b)
a = 100
b = 200
print(hcf(100 , 200))
Code No 2-
# defining a function to calculate HCF
def calculate_hcf(x, y):
# selecting the smaller number
if x > y:
smaller = y
else:
smaller = x
for i in range(1,smaller + 1):
if((x % i == 0) and (y % i == 0)):
hcf = i
return hcf
# taking input from users
num1 = int(input("Enter first number: "))
num2 = int(input("Enter second number: "))
# printing the result for the users
print("The H.C.F. of", num1,"and", num2,"is", calculate_hcf(num1, num2))
Comments
Post a Comment