Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,938 questions

51,875 answers

573 users

How to print the N largest numbers in array with Java

2 Answers

0 votes
import java.util.Arrays;
import java.util.Collections;
 
public class MyClass {
    public static void printNLargest(Integer[] arr, int N) {
        Arrays.sort(arr, Collections.reverseOrder());
  
        for (int i = 0; i < N; i++)
            System.out.print(arr[i] + " ");
    }
 
    public static void main(String[] args)
    {
        Integer arr[] = new Integer[] { 50, 99, 20, 100, 76, 33, 87, 40, 80, 85 };
        int N = 4;
         
        printNLargest(arr, N);
    }
}
 
 
 
  
/*
run:
  
100 99 87 85 
  
*/

 



answered May 14, 2022 by avibootz
0 votes
import java.util.Arrays;
import java.util.ArrayList;
import java.util.Collections;

public class MyClass {
    public static void printNLargest(int[] arr, int N) {
        Integer[] iarray = Arrays.stream( arr ).boxed().toArray( Integer[] :: new);
        
        Arrays.sort(iarray, Collections.reverseOrder());
        
        for (int i = 0; i < N; i++)
            System.out.print(iarray[i] + " ");
    }

    public static void main(String[] args)
    {
        int[] arr = { 50, 99, 20, 100, 76, 33, 87, 40, 80, 85 };
        int N = 4;
          
        printNLargest(arr, N);
    }
}



 
/*
run:
 
100 99 87 85 
 
*/

 



answered May 14, 2022 by avibootz

Related questions

1 answer 112 views
2 answers 130 views
1 answer 99 views
1 answer 103 views
1 answer 99 views
1 answer 107 views
1 answer 107 views
...