Skip to content

Instantly share code, notes, and snippets.

@zendar426
Created April 18, 2023 15:29
Show Gist options
  • Save zendar426/8588bf30e1708a681a27bb31225f4eec to your computer and use it in GitHub Desktop.
Save zendar426/8588bf30e1708a681a27bb31225f4eec to your computer and use it in GitHub Desktop.
#Csharp #Matematicas
static int Mcd(int a, int b)
{
if (b > a) return Mcd(b, a);
else if (b == a) return a;
else return Mcd(a-b,b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment