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

51,896 answers

573 users

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

1 Answer

0 votes
using System;

class Program
{
    public static void printNLargest(int[] arr, int N) {
        Array.Sort(arr);
        Array.Reverse(arr);
 
        for (int i = 0; i < N; i++)
            Console.Write(arr[i] + " ");
    }
    static void Main() {
        int[] arr = new int[] { 50, 99, 20, 100, 76, 33, 87, 40, 80, 85 };
        int N = 4;
        
        printNLargest(arr, N);
    }
}



/*
run:

100 99 87 85 

*/

 



answered May 15, 2022 by avibootz

Related questions

2 answers 130 views
1 answer 99 views
1 answer 100 views
1 answer 108 views
1 answer 108 views
1 answer 94 views
2 answers 139 views
...