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.

40,026 questions

51,982 answers

573 users

How to find the min value from array in C#

2 Answers

0 votes
using System;
using System.Linq;
   
public class Program {
    public static void Main() {
        int[] arr = new int[] { 2, 4, 6, 1, 9, 3 };
           
        Console.Write(arr.Min());
    }
}
   
   
   
   
/*
run:
   
1
   
*/

 



answered Aug 3, 2021 by avibootz
0 votes
using System;
 
public class Test
{
    public static void Main()
    {
        int[] arr = new[] { 3, 6, 9, 4, 8, 1, 5 };
         
        int mn = arr[0];
        for (int i = 1; i <= arr.Length - 1; i++) {
            if ((arr[i] < mn))
                mn = arr[i];
        }
 
        Console.WriteLine(mn);
    }
}
 
 
 
/*
run:
 
1
 
*/

 



answered Aug 3, 2021 by avibootz

Related questions

1 answer 109 views
1 answer 136 views
1 answer 100 views
100 views asked Jun 9, 2021 by avibootz
1 answer 133 views
1 answer 150 views
150 views asked Jun 9, 2021 by avibootz
1 answer 118 views
1 answer 125 views
125 views asked Jun 9, 2021 by avibootz
...