Write a java program to sorting given n numbers.


 SortArrayExample1.java

  1. import java.util.Arrays;   
  2. public class SortArrayExample1  
  3. {   
  4. public static void main(String[] args)   
  5. {   
  6. //defining an array of integer type   
  7. int [] array = new int [] {9023510912226734};  
  8. //invoking sort() method of the Arrays class  
  9. Arrays.sort(array);   
  10. System.out.println("Elements of array sorted in ascending order: ");  
  11. //prints array using the for loop  
  12. for (int i = 0; i < array.length; i++)   
  13. {       
  14. System.out.println(array[i]);   
  15. }   
  16. }  
  17. }  

Output:

Array elements in ascending order: 
5 
12 
22 
23 
34 
67 
90 
109