
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
Please help me with the below using java
![3 CHANGE THIS TO A RECURSIVE METHOD
Write a recursive version of this looping program. (Hint: You need to replace the While
loop with a recursive method.)
public class Reverse {
public static void main(String [] args) {
String str= JOptionPane.showInput Dialog("Type a string to reverse: ");
int index
str.length () - 1;
while (index >= 0) (
print (str.substring (index, index + 1));
index--;
4 THE BUNNY EAR PROBLEM
We have bunnies standing in a line, numbered 1, 2, ... The odd bunnies (1, 3, ..) have
the normal 2 ears. The even bunnies (2, 4, ..) we'll say have 3 ears, because they
each have a raised foot. Recursively return the number of "ears" in the bunny line
1, 2, ... n (without loops or multiplication) for the number of bunnies entered by the
user.
bunnyEars2(0)→→O
bunnyEars2(1)→ 2
bunnyEars2(2)→→ 5](https://content.bartleby.com/qna-images/question/135e4020-2866-44cf-85d6-e207b38be551/063adbd4-2b7b-4637-a826-f77b7d8874f7/fqzc0ye_thumbnail.jpeg)
Transcribed Image Text:3 CHANGE THIS TO A RECURSIVE METHOD
Write a recursive version of this looping program. (Hint: You need to replace the While
loop with a recursive method.)
public class Reverse {
public static void main(String [] args) {
String str= JOptionPane.showInput Dialog("Type a string to reverse: ");
int index
str.length () - 1;
while (index >= 0) (
print (str.substring (index, index + 1));
index--;
4 THE BUNNY EAR PROBLEM
We have bunnies standing in a line, numbered 1, 2, ... The odd bunnies (1, 3, ..) have
the normal 2 ears. The even bunnies (2, 4, ..) we'll say have 3 ears, because they
each have a raised foot. Recursively return the number of "ears" in the bunny line
1, 2, ... n (without loops or multiplication) for the number of bunnies entered by the
user.
bunnyEars2(0)→→O
bunnyEars2(1)→ 2
bunnyEars2(2)→→ 5
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 4 steps with 3 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Some languages support many modes of parameter passing. Provide 2 examples using two different programming languages which support the user of the programming language deciding which to use when creating their method. (Programming Languages)arrow_forwardI am trying to complete this assignment in Java.arrow_forwardI'm new to Java programming. Can you please tell me what I'm doing wrong? My input are on lines 12 and 13.arrow_forward
- Hi, can someone explain to me the diff between type errors and run-time errors in java, please use simplest detail.arrow_forwardIn Java, What is abstraction and what advantage does it provide? Please provide code example.arrow_forwardExplain how Android and Java do work together? Explain the phases. #Note: Please give me a unique answer, no copy paste.arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education