Answers for "how to find hcf in python"

1

hcf program in python

def hcf(x, y):  
   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  
  
num1 = int(input("Enter first number: "))  
num2 = int(input("Enter second number: "))  
print("The H.C.F. of", num1,"and", num2,"is", hcf(num1, num2))
Posted by: Guest on May-04-2021
-1

python code for gcd of two numbers

# Function to find HCF the Using Euclidian algorithm
def compute_hcf(x, y):
   while(y):
       x, y = y, x % y
   return x

hcf = compute_hcf(300, 400)
print("The HCF is", hcf)
Posted by: Guest on November-19-2020
0

python find HCF

#pip3 install HCF
import HCF
s=HCF.HCF(45,50)
print(s.gcd)
Posted by: Guest on January-29-2021

Python Answers by Framework

Browse Popular Code Answers by Language