In Java is there a way to bring out the highest number in an array? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

In Java is there a way to bring out the highest number in an array?

I wanted to write a program in Java that can arrange numbers in descending and ascending order. How do I use arrays to do that or is there another way?

25th Apr 2019, 9:05 PM
Ngozi
Ngozi - avatar
2 Answers
+ 5
If you are lazy: import java.util.Arrays; import java.util.Collections; Arrays.sort(yourArray); Collections.reverse(Arrays.asList(yourArray)); if not: learn a sorting algorithm. I think Bubble Sort is the easiest one. you can write your own reverse function if you want public int[] reverse(int[] arr){ int n = arr.length - 1; int[] reverse = new int[arr.length]; for(int i = 0; i < reverse.length; i++){ reverse[i] = arr[n]; n--; } return reverse; }
26th Apr 2019, 1:09 AM
Denise Roßberg
Denise Roßberg - avatar