Question: Write a method that accept a String object as an argument and displays its contents back - ward. For instance, if the string argument is
Write a method that accept a String object as an argument and displays its contents backward. For instance, if the string argument is "gravity" the method should display "ytivarg". Demonstrate the method by running the following program.
import java.util.Scanner;
public class BackwardString
public static void mainString args
String input; Keyboard input
Create a Scanner object for keyboard input.
Scanner keyboard new ScannerSystemin;
Get a string.
System.out.printEnter something: ;
input keyboard.nextLine;
Display it backward.
backwardinput;
end of main
backward method here
end of class
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
