“algorithme euclide” Réponses codées

algorithme GCD

function gcd(a, b)
    if b = 0
        return a
    else
        return gcd(b, a mod b)
Good Gull

algorithme euclide

int Euclid(int a, int b)
{
    int r;
    while(b != 0) 
    {
         r = a % b;
         a = b; 
         b = r; 
    }
    return a; 
}
Phil the ice cream man

algorithme euclide

 function mcd($a,$b) {
	while($b) list($a,$b)=array($b,$a%$b);
	return $a;
}
Phil the ice cream man

L'algorithme d'Euclid

def GCF(a,b):
  if a == b: return a
  else: return GCF(abs(a-b), min(a,b))
Wicked Willet

algorithme euclide

def MCD(a,b):
    while b != 0:
        a, b = b, a % b
    return a
Phil the ice cream man

Réponses similaires à “algorithme euclide”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code