Question: #1. Write a Java program to reverse the characters in a string. -Your program must call the recursive method reverseString(inString) to reverse a string. -For

#1. Write a Java program to reverse the characters in a string.

-Your program must call the recursive method reverseString(inString) to reverse a string.

-For example, if the input string is ABCDE, reverseString(inString) would return EDCBA.

-Your main program should contain a loop which will continually prompt the user for a string or q to quit.

-Your program should display the original string and the reverse string.

-Hint: For the recursive method, use the substring() method. Recall, substring(int start, int end) returns a substring of the string, which starts at the start position and ends one character before the end position.

-Sample Input/Output:

Enter a string (q to quit): AND

The input string is: AND

The reverse string is DNA

Enter a string (q to quit): q

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!