Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 back-ward. 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 main(String[] args)
{
String input; // Keyboard input
// Create a Scanner object for keyboard input.
Scanner keyboard = new Scanner(System.in);
// Get a string.
System.out.print("Enter something: ");
input = keyboard.nextLine();
// Display it backward.
backward(input);
}//end of main
// backward method here
}// end of class

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

Step: 3

blur-text-image

Ace Your Homework with AI

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

Get Started

Students also viewed these Databases questions

Question

How wide are Salary Structure Ranges?

Answered: 1 week ago