Computer Science, asked by gonf1870, 5 months ago

write a java program that inputs 5 names and sort it in descending order by the use of insertion technique

Answers

Answered by Vijayraghav1980
0

Answer:

This depends on which class is of this. Please tell the class then I will answer on your question.

Answered by kunduhriddhiraj
1

Answer:

import java.util.Scanner;

class BubbleSortExample {

 public static void main(String []args) {

   int num, i, j, temp;

   Scanner input = new Scanner(System.in);

 

   System.out.println("Enter the number of integers to sort:");

   num = input.nextInt();

 

   int array[] = new int[num];

 

   System.out.println("Enter " + num + " integers: ");

 

   for (i = 0; i < num; i++)  

     array[i] = input.nextInt();

 

   for (i = 0; i < ( num - 1 ); i++) {

     for (j = 0; j < num - i - 1; j++) {

       if (array[j] > array[j+1])  

       {

          temp = array[j];

          array[j] = array[j+1];

          array[j+1] = temp;

       }

     }

   }

 

   System.out.println("Sorted list of integers:");

 

   for (i = 0; i < num; i++)  

     System.out.println(array[i]);

 }

}

Output:-

Enter the number of integers to sort:

6

Enter 6 integers:  

12

6

78

9

45

08

Sorted list of integers:

6

8

9

12

45

78

Hope it ud help u

Explanation:

Similar questions