Skip to content

Instantly share code, notes, and snippets.

@DaviRamosAndrade
Created March 2, 2018 22:57
Show Gist options
  • Save DaviRamosAndrade/7216d81448a6ec038dcaa36667fb4287 to your computer and use it in GitHub Desktop.
Save DaviRamosAndrade/7216d81448a6ec038dcaa36667fb4287 to your computer and use it in GitHub Desktop.
int euclides(int dividendo, int divisor)
{
return abs(divisor) != 0 ? euclides(divisor, dividendo % divisor) : dividendo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment