Top Categories
Python Tutorials - Program To Find out the GCD of Two Positive Numbers
- Category:
- Sub Category:
In this Python Pattern Programming video tutorial you will learn to find out the gcd of two positive numbers with example. GCD stands for Greatest Common Divisor it is also called as HCF (Highest Common Factor) GCD of two positive number is nothing but it is the greatest number which will divide
In this Python Pattern Programming video tutorial you will learn to find out the gcd of two positive numbers with example. GCD stands for Greatest Common Divisor it is also called as HCF (Highest Common Factor) GCD of two positive number is nothing but it is the greatest number which will divide both the number completely. We can use gcd() or Euclid's algorithm to find out the gcd of two numbers.