Posted by: serial November 11, 2008
I couldn't, can you solve it
Login in to Rate this Post:     0       ?        
class MyStringTest {
  public static void main(String args[]) {
      String str = "sajha";
      int length = str.length();
     
      for(int i=length-1; i>=0; i--) {
             System.out.print( charAt( i ) );
     }
     
  }
}


Read Full Discussion Thread for this article