You are on page 1of 1

Public Function GCD(ByVal

x As Long, ByVal y As Long)


As Long

The greatest common denominator (GCD) is the largest positive integer


that divides into both numbers without a remainder.
Examples: GCD(256,64)=64, GCD(12,8)=4, GCD(5,3)=1
Work with absolute values (positive integers)

x< 0 ?

Yes

x = -x
No

y< 0 ?

Yes

No y = -y

Error, both
x+ y> 0 ?
parameters zero

Yes No

g=y GCD = 0

Iterate until x = 0

x> 0 ?

No
Yes
g=x
GCD = g x = y Mod x
y= g

End

You might also like