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 static void reverseString(String s){ System.out.println("---------"); for(int i=s.length()-1; i>=0;i--){ System.out.print(s.charAt(i)); } System.out.println(); }