Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Big Data With Hadoop MapReduce A Classroom Approach

Authors: Rathinaraja Jeyaraj ,Ganeshkumar Pugalendhi ,Anand Paul

1st Edition

1774634848, 978-1774634844

More Books

Students also viewed these Databases questions

Question

1. What barriers or misconceptions must you address?

Answered: 1 week ago