Skip to content

Instantly share code, notes, and snippets.

@shelajev
Created November 12, 2019 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shelajev/b96ade899d048c0b3ebce444158f7512 to your computer and use it in GitHub Desktop.
Save shelajev/b96ade899d048c0b3ebce444158f7512 to your computer and use it in GitHub Desktop.
long fact(long n) {
if (n == 0)
return 1L;
else
return n * fact(n - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment