Answers for "write a python program to find gcd of two numbers"

1

write a python program to find gcd of two numbers

PYTHON-----
# FIRSTLY PASTE 'pip3 install HCF' IN TERMINAL
num1 = int(input('Enter the first number'))
num2 = int(input('Enter the second number'))
import HCF
s=HCF.HCF( num1 , num2 )
print(s.gcd)
Posted by: Guest on October-26-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

Code answers related to "write a python program to find gcd of two numbers"

Python Answers by Framework

Browse Popular Code Answers by Language