Tagged Questions
0
votes
4answers
619 views
Java modulo operator and GCD
Why does this code give me an answer of 25?
public int findGcd() {
int num = this.num;
int den = this.den;
while (den != 0) {
int t = den;
den = num % den;
num = ...
7
votes
1answer
2k views
What algorithm does Python employ in fractions.gcd()?
I'm using the fractions module in Python v3.1 to compute the greatest common divisor. I would like to know what algorithm is used. I'm guessing the Euclidean method, but would like to be sure. The ...