You are viewing a single comment's thread from:

RE: How to reverse String using java - learn java

in #programming9 years ago

You can do it without the character array:

class Reversestring
{
  public static void main(String args[])
  {
    String s="ravikumar";
    for(int i=s.length()-1;i>=0;i--)
    {
      System.out.print(s.charAt(i));
    }
  }
}
Sort:  

Would be nice to see it as OOP based class static and not static :)

Coin Marketplace

STEEM 0.04
TRX 0.33
JST 0.081
BTC 60814.69
ETH 1618.76
USDT 1.00
SBD 0.42