Advertisements
Advertisements
Question
Print the last letter of each word.
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();
System.out.print(" " + word.charAt(wlen - 1));
}
}
}
Output:
Enter the string : Success comes to those who believe in it
s s o e o e n t
shaalaa.com
Is there an error in this question or solution?
