×
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
47334    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.
Sri Sri Ramakrishna Paramahamsa
All religions are true. God can be reached by different religions. Many rivers flow by many ways but they fall into the sea. They all are one.
Sri Sri Ramakrishna Paramahamsa
4104
82.1
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54350
25/06/2018     45332
01/01/2018     43842
28/06/2017     41357
02/08/2017     40423
01/08/2017     34432
06/07/2017     34213
15/05/2017     33466
11/09/2018     30645
14/07/2017     30064
softetechnologies