Recursion in Java

Recur

bunnyEars2() (try to figure out what goes where the question marks are)

		if(bunnies == 0)
		 return 0;
	   if(bunnies % 2 == 0)
    	 return 3 +bunnyEars2(?????);

      return 2 +bunnyEars2( ????? );

Recursion problems (bunny ears is a good, straight forward one to start with)