×
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
46643    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.
Nelson Mandela
Education is the most powerful weapon which you can use to change the world.
Nelson Mandela
2850
74.04
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     52085
25/06/2018     43882
01/01/2018     42906
28/06/2017     40658
02/08/2017     39473
01/08/2017     33667
06/07/2017     33485
15/05/2017     32763
14/07/2017     29032
11/09/2018     28959
softetechnologies