Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. public int bunnyEars(int bunnies) {
  2. if (bunnies == 0){
  3. return 0;
  4. }else{
  5. return 2 + bunnyEars(bunnies-1);
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement