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