Question
program to print the largest and smallest words in a given sentence.
Share code with your friends
Share on whatsapp
Share on facebook
Share on twitter
Share on telegram
Code
import java.util.Scanner;
public class largestAndSmallestWordInSentence
{
public static void main(String[] args)
{
String sen="",wd="",large="",small="";
char ch=' ';
int i=0,len=0,count=0;
Scanner sc = new Scanner(System.in);
System.out.println("Enter a sentence");
sen = sc.nextLine();
sen=sen+" ";
large=Character.toString(sen.charAt(0));
small=sen;
len=sen.length();
for(i=0;i< len;i++)
{
ch=sen.charAt(i);
if(ch==' ')
{
if(wd.length()>large.length())
{
large=wd;
}
if(wd.length()< small.length())
{
small=wd;
}
wd="";
}
else
{
count++;
wd=wd+ch;
}
}
System.out.println("largest word:"+large);
System.out.println("smallest word:"+small);
}
}
Coding Store
Sale

ISC QUESTION PAPERS WITH SOLUTION(PROGRAMMING ONLY)
Sale

ICSE QUESTION PAPER WITH SOLUTION(PROGRAMMING ONLY)
Sale

ISC QUESTION PAPERS WITH SOLUTION(PROGRAMMING ONLY)
Sale

ICSE QUESTION PAPER WITH SOLUTION(PROGRAMMING ONLY)
Sale

ISC QUESTION PAPERS WITH SOLUTION(PROGRAMMING ONLY)
Sale
