Skip to content

Instantly share code, notes, and snippets.

@AnasAboreeda
Last active January 24, 2022 10:35
Show Gist options
  • Save AnasAboreeda/adab1fcb4a2b0de681e6b54c76446923 to your computer and use it in GitHub Desktop.
Save AnasAboreeda/adab1fcb4a2b0de681e6b54c76446923 to your computer and use it in GitHub Desktop.
int factorial(int n) {
if (n < 0) {
return -1;
} else if (n
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