Question
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started