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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started