CodingBat bunnyEars Solution April 05, 2017 Get link Facebook X Pinterest Email Other Apps public int bunnyEars(int bunnies) {if (bunnies==0) return 0; if(bunnies==1) return 2; return 2+bunnyEars(bunnies-1); } Comments
Comments
Post a Comment