Last active
May 6, 2024 19:03
-
-
Save zendar426/d237bfeb6426ea9e306c2dea82239aaf to your computer and use it in GitHub Desktop.
C# #Matematicas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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