Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int fact(int n)
- {
- if(n < 0) return 0;
- if(n == 0) return 1;
- return n * fact(n-1);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement