Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is what I have right now public class Reverser1 { public static String reverse (String original) { return reverse(original, 0, original.length() -1); } private

This is what I have right now

public class Reverser1 { public static String reverse (String original) { return reverse(original, 0, original.length() -1); } private static String reverse (String source, int lowIndex, int highIndex) { if (lowIndex < highIndex) return source.charAt(highIndex) + reverse(source, lowIndex+1, highIndex-1) + source.charAt(lowIndex); else return ""; } public static void main(String[] args) { System.out.println(reverse("camouflage")); } }

right now this prints out camouflage backwards, i cannot figure out how to make it a scanner so what ever words i type in it should print out backwards. Help please

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

Recommended Textbook for

Advanced Oracle Solaris 11 System Administration

Authors: Bill Calkins

1st Edition

0133007170, 9780133007176

More Books

Students also viewed these Databases questions

Question

Explain the various job analysis methods.

Answered: 1 week ago