import java.util.*;
public class Exercise61 {
public static void main(String[] args){
Scanner in = new Scanner(System.in);
System.out.print("\nInput a word: ");
String word = in.nextLine();
word = word.trim();
String result = "";
char[] ch=word.toCharArray();
for (int i = ch.length - 1; i >= 0; i--) {
result += ch[i];
}
System.out.println("Reverse word: "+result.trim());
}
}
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer