import java.util.*;

class ReverseString

{

   public static void main(String args[])

   {

      String original, reverse = "";

      Scanner in = new Scanner(System.in);

     

      System.out.println("Enter a string to reverse");

      original = in.nextLine();

     

      int length = original.length();

     

      for (int i = length - 1 ; i >= 0 ; i--)

         reverse = reverse + original.charAt(i);

         

      System.out.println("Reverse of the string: " + reverse);

   }

IT Committee IIM Ranchi

IT Committee IIM Ranchi Creator

Technology Committee caters to the IT needs of the...

Suggested Creators

IT Committee IIM Ranchi