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