A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to sort an array in ascending order
Q:

Java program to sort an array in ascending order

0

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

Example:

    Input:  
    12, 25, 99, 66, 33, 8, 9, 54, 47, 36
    Output: 
    8, 9, 12, 25, 33, 36, 47, 54, 66, 99

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 ExArraySortElement {
  public static void main(String[] args) {
    int n, temp;
    //scanner class object creation
    Scanner s = new Scanner(System.in);

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

    //integer array object
    int a[] = new int[n];

    //read 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 elements 		
    System.out.println("Ascending Order:");
    for (int i = 0; i < n; i++) {
      System.out.println(a[i]);
    }
  }
}

Output

Enter the elements you want : 10
Enter all the elements:
12
25
99
66
33
8
9
54
47
36
Ascending Order:
8
9
12
25
33
36
47
54
66
99

 

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now