×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Find the highest and the lowest character in a word through java
Find Longest word in a sentence through java - Java
47162    Arnab De    09/09/2018

Write a program to input a sentence and print the numbers of characters found in the longest word of the given sentence.

At first import the util pacakage for creating the object of the scanner class. Now create an object (sc) of Scanner class. Read the sentence using nextLine() method of Scanner class. Now split the sentence into words using split() method and store into a string array. Now set a variable max and initialized to 0. Now check all the words and compare the length of the word and max variables and store the maximum length of the word and print it.

softetechnologies
import java.util.*;
public class longestWord
{
    public static void main()
    {
        Scanner sc=new Scanner(System.in);
        System.out.println("Enter a Setance : ");
        String str=sc.nextLine();
        String []words=str.split(" ");
        int max=0;
		String res="";
        for(int i=0;imax)
            {
                max=words[i].length();
				res=words[i];
            }
        }
        System.out.print("Maximum Length of the words is : " + max);
		System.out.print("Maximum Length words is : " + res);
    }
}
softetechnologies

Enter a Setance :
People prefer electric vehicles over conventional ones
Maximum Length of the words is : 12
Maximum Length words is : conventional

Find the highest and the lowest character in a word through java
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Swami Vivekananda
Education is the manifestationof the perfection already in man.
Swami Vivekananda
235
80.24
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53990
25/06/2018     45014
01/01/2018     43590
28/06/2017     41141
02/08/2017     40136
01/08/2017     34182
06/07/2017     33988
15/05/2017     33226
11/09/2018     30178
14/07/2017     29733
softetechnologies