I have \"Hello World\" kept in a String variable named hi.
\"Hello World\"
hi
I need to print it, but reversed.
How can I do this? I understand there
public class Test { public static void main(String args[]) { StringBuffer buffer = new StringBuffer("Game Plan"); buffer.reverse(); System.out.println(buffer); } }