“Divisor Maximo Comun” Código de respuesta

Divisor Maximo Comun

int mcd(int a, int b){
	if(a == b){
		return a;
	}
	else{
		if(a > b){
			return mcd(a - b, b);
		}
		else{
			return mcd(a, b - a);
		}
	}
}
Obedient Octopus

Divisor Maximo Comun

// calcula el maximo comun divisor
	int mcd(int a, int b){
    int max;

    if(b == 0){
      max = a;
    }else{
      max = mcd(b, a % b);
    }

    return max;
	}
Obedient Octopus

Respuestas similares a “Divisor Maximo Comun”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código