sort the int array in ascending order in java code example
Example 1: how to sort integer array in java
int countOfArray = 5;
int num [] = new int[counfOfArray];
int num[] = [8 , 5 , 9 , 3 , 4];
for (int i = 0; i < countOfArray; i++)
{
for (int j = i + 1; j < countOfArray; j++) {
if (num[i] > num[j])
{
temp = num[i];
num[i] = num[j];
num[j] = temp;
}
}
}
Example 2: java sort int array
int[] arr = {1, 2, 3, 4, 5, 6};
int[] arrDesc = Arrays.stream(arr).boxed()
.sorted(Collections.reverseOrder())
.mapToInt(Integer::intValue)
.toArray();
System.out.println(Arrays.toString(arrDesc));