Skip to content

Instantly share code, notes, and snippets.

@zendar426
Last active May 6, 2024 19:03
Show Gist options
  • Save zendar426/d237bfeb6426ea9e306c2dea82239aaf to your computer and use it in GitHub Desktop.
Save zendar426/d237bfeb6426ea9e306c2dea82239aaf to your computer and use it in GitHub Desktop.
C# #Matematicas
static long Factorial(long n) {
if (n==0) return 1;
else return n * Factorial(n-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment