Answers for "euclid's algorithm"

C++
1

euclid algorithm

int Euclid(int a, int b)
{
    int r;
    while(b != 0) 
    {
         r = a % b;
         a = b; 
         b = r; 
    }
    return a; 
}
Posted by: Guest on December-28-2020
2

gcd algorithm

function gcd(a, b)
    if b = 0
        return a
    else
        return gcd(b, a mod b)
Posted by: Guest on September-22-2020
0

euclid algorithm

function mcd($a,$b) {
	while($b) list($a,$b)=array($b,$a%$b);
	return $a;
}
Posted by: Guest on January-02-2021
0

euclid algorithm

def MCD(a,b):
    while b != 0:
        a, b = b, a % b
    return a
Posted by: Guest on January-02-2021

Browse Popular Code Answers by Language