Question: Write a Java program that allows the user to input a short sentence ( 3 to 5 words ) . The program should accept the

Write a Java program that allows the user to input a short sentence (3 to 5 words). The program should accept the phrase or sentence and then print (display) the string of characters in reverse order.
Write a recursive method that displays the string in reverse order on the console using the following method header: public static void reverseDisplay(String value)
Name the program ReverseChar.java.
For the Javadoc portion of the program, copy the running ReverseChar.java program and rename the copy as ReverseCharJavadoc.java. Your existing Java preamble line comments should be converted to start with the Javadoc symbols /** and end with the Javadoc symbols */
As an example, your current required preamble should look like the following using line comment symbols (//):
//Name: John Smith
//Date: 3/15/2023
//Program: Project 18
To convert the preamble into Javadoc comments, the preamble should be modified to the following set of symbols (note the use of required asterisks (*) between the /** and the */ symbols:
/**
*Name: John Smith
*@since 3/15/2023
*Program: Project 18
*/

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 Programming Questions!