Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Write a java program to get a string of words and print the numbers of each word count in descending order

Answer Posted / megha shetty

public class Inc {

public static void main(String[] args) {
// TODO Auto-generated method stub
String temp;
String s="this is my way of doing it";
String s1[]=s.split(" ");

for(int j=1;j<=s1.length-1;j++)
for(int i=0;i<s1.length-j;i++)
{
if(s1[i].length()<s1[i+1].length())
{ temp=s1[i];
s1[i]=s1[i+1];
s1[i+1]=temp;
}
}
System.out.println("
new sorted array:
");
for(String i:s1)
System.out.println(i+" the length is "+i.length());
}

}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is another word for methodology?

980


What happens when a thread cannot acquire a lock on an object in java programming?

966


What is :: operator in java 8?

969


how to write a server program and sending the mails to the server using smtp protocol please help me

2017


List some java keywords sun like c, c + + keywords?

973


Can we create more than one object singleton class?

1000


Why do we need wrapper classes?

1029


What is rmi and steps involved in developing an rmi object?

1013


How to declare objects of a class ?

1033


What are synchronized methods and synchronized statements in java programming?

975


what is a green thread? : Java thread

961


Name and explain the types of ways which are used to pass arguments in any function in java.

1029


Which oo concept is achieved by using overloading and overriding?

966


What is the right data type to represent a price in java?

919


Give the hierarchy of inputstream and outputstream classes.

1061