Guest User

Untitled

a guest
May 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3.  
  4.  
  5. int qRekursiv(int n)
  6. {
  7. if (n == 1 || n == 2) return 1;
  8. return (qRekursiv(n - qRekursiv(n - 1)) + qRekursiv(n - qRekursiv(n - 2)));
  9. }
Add Comment
Please, Sign In to add comment