Advertisement
Guest User

Für Y

a guest
Dec 11th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public int fibonacci_berechnen_reku(int iN) {
  2. if (iN > 1 ) {
  3. iFibu_reku += fibonacci_berechnen_reku(--iN);
  4. return iFibu_reku;
  5. }else {
  6. return 1;
  7. }
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement