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,955 questions

51,897 answers

573 users

How to print the N largest numbers in array with C++

1 Answer

0 votes
#include <iostream>
#include <algorithm>

void printNLargest(int arr[], int size, int N) {
    sort(arr, arr + size, std::greater<int>());
 
    for (int i = 0; i < N; i++)
        std::cout << arr[i] << " ";
}
 
int main()
{
    int arr[] = { 50, 99, 20, 100, 76, 33, 87, 40, 80  };
    int size = sizeof(arr) / sizeof(arr[0]);
    int N = 4;
    
    printNLargest(arr, size, N);
}




/*
run:

100 99 87 80 

*/

 



answered May 12, 2022 by avibootz
edited May 14, 2022 by avibootz

Related questions

2 answers 131 views
1 answer 100 views
1 answer 104 views
1 answer 100 views
1 answer 108 views
1 answer 108 views
1 answer 94 views
...