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?
