Guest User

Untitled

a guest
Apr 25th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. static int F1(int n, int k)
  2. {
  3. if (n >= 0 && k >= 0)
  4. {
  5. return F1(n - 1, k) + k * F1(n - 1, k - 1);
  6. }
  7. else
  8. {
  9. return 1;
  10. }
  11. }
Add Comment
Please, Sign In to add comment