0 votes
in JAVA by
How to reverse a string in java word by word?

1 Answer

0 votes
by

How to reverse a string in java word by word?

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);

  }

}

🔗Source: stackoverflow.com

🔗Source: Java Interview Questions and Answers

Related questions

0 votes
asked Oct 21, 2020 in JAVA by rahuljain1
0 votes
asked Oct 19, 2020 in JAVA by rahuljain1
...