Answers for "2/3 euclid 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
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

Browse Popular Code Answers by Language