JavaAlgorithms/Misc/GCD.java

16 lines
291 B
Java
Raw Normal View History

2017-10-03 16:02:42 +08:00
//Oskar Enmalm 3/10/17
//This is Euclid's algorithm which is used to find the greatest common denominator
public class GCD{
public static int gcd(int a, int b) {
int r = a % b;
while (r != 0) {
b = r;
r = b % r;
}
return b;
}
}