Q:

Java program to sort an array in descending order

belongs to collection: Java Array Programs

0

Given an array of integers and print array in descending order using java program.

Example:

    Input:  
    55, 25, 36, 99, 12, 9, 55, 88, 66, 47  
    
    Output: 
    99, 88, 66, 55, 55, 47, 36, 25, 12, 9

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program

import java.util.Scanner;

public class ExSortInDescending {
  public static void main(String[] args) {
    int n, temp;
    //scanner class object creation
    Scanner s = new Scanner(System.in);

    //input total number of elements
    System.out.print("Enter number of elements you want : ");
    n = s.nextInt();

    //integer arrar declarations
    int a[] = new int[n];

    //input array elements 
    System.out.println("Enter all the elements:");
    for (int i = 0; i < n; i++) {
      a[i] = s.nextInt();
    }

    //sorting elements
    for (int i = 0; i < n; i++) {
      for (int j = i + 1; j < n; j++) {
        if (a[i] < a[j]) {
          temp = a[i];
          a[i] = a[j];
          a[j] = temp;
        }
      }
    }

    //print sorted array
    System.out.println("Descending Order:");
    for (int i = 0; i < n; i++) {
      System.out.println(a[i]);
    }
  }
}

Output

Enter number of elements you want : 10
Enter all the elements:
55
25
36
99
12
9
55
88
66
47
Descending Order:
99
88
66
55
55
47
36
25
12
9

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Array Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to multiply two matrices... >>
<< Java program to sort an array in ascending order...