English

Write a Program to Input Twenty Names in an Array. Arrange These Names in Descending Order of Alphabets, Using the Bubble Sort Technique. - Computer Applications

Advertisements
Advertisements

Question

Write a program to input twenty names in an array. Arrange these names in descending order of alphabets, using the bubble sort technique. 

Answer in Brief

Solution

import java.util.scanner;
class sort
{
     public static void main ( )
     {
            String nm[ ]= new string [20];
            Scranner S = new Scanner (System.in);
            for (int i=0 ; i<=19; i++)
     {
            System.out.println ("Enter Name");
            nm[i]=SnextLine( );
     }
     String t;
     for (int i=0; i<=18; i++)
     {
            for (int j=0; j<=18-i ; j++) 
     {

           if (nm[j].comapreTo(nm[j +1])<0)
           {
                   t=nm[i];
                   nm[i]=nm[j];
                   nm[j]=t;
           }
    }
}
for (int i=0; i<=19; i++)
    {
             System.out.println (nm [i]);
    }
    }
}     

shaalaa.com
Introduction of Input in Java
  Is there an error in this question or solution?
2014-2015 (March) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×