Computer Science, asked by Anonymous, 1 year ago

write a program to input 50 words and sort them in descending order of alphabets using selection sort and display the sorted list of words.
thanks..............

Answers

Answered by Anonymous
1
program to input 50 words and sort them in descending order of alphabets using selection sort and display the sorted list of words. is given below
...............





____________




◆ WITH THE HELP OF JAVA



--------------------



import java.util.




Scanner;public class




**********Alphabetical_Order *********



{



public static


-------. void main



(String[] args)




{




int n;



String temp; Scanner s = new Scanner





(System.in);



________

System.out.print("Enter number of names you want to enter:");

___________



n = s.nextInt(); String names[] = new String[n];



Scanner s1 = new Scanner(System.in);



System.out.println("Enter all the names:");




-------------




for(int i = 0; i < n; i++)



{



names[i] = s1.nextLine()




;



}




for (int i = 0; i < n; i++)



{



for (int j = i + 1; j < n; j++)



{



if (names[i].compareTo(names[j])>0)



{



temp = names[i]; names[i] = names[j]; names[j]




= temp;


}



}


} System.out.print("Names in Sorted Order:");




for (int i = 0; i < n - 1; i++)





{ System.out.print(names[i] + ",")




; }


System.out.print(names[n - 1]); }}

Anonymous: not with scanner
Similar questions