English

Reverse the words of a sentence.

Advertisements
Advertisements

Question

Reverse the words of a sentence.

Code Writing
Advertisements

Solution

import java.util.*;
class clString
{
    public void main()
    {
        Scanner sc = new Scanner(System.in); String ts = "";
        System.out.print("Enter the string : ");
        ts = sc.nextLine();        
        StringTokenizer stoken = new StringTokenizer(ts);
        int t1 = stoken.countTokens();         
        for(int c = 1; c <= t1; c++)
        {
            String word = stoken.nextToken(); 
            int wlen = word.length();            
            for(int k = wlen - 1; k >= 0; k--)
            {
                System.out.print(word.charAt(k));
            }            
            System.out.print(" ");
        }
    }
}

Output:

Enter the string : SNOW IN SHIMLA

WONS NI ALMIHS

shaalaa.com
  Is there an error in this question or solution?
Chapter 11: Programs Overall - String Handling [Page 253]

APPEARS IN

Rupa Pandit Computer Applications [English] Class 10 ICSE
Chapter 11 Programs Overall
String Handling | Q 4. | Page 253
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×