C# Program to find Minimum Value of an Array

You are Here:

Find Minimum Value of an Array

In the following example, we will find the minimum value of an array (arr).

Example

C# Compiler
using System; namespace myApp { class Program { static void Main(string[] args) { int i; int[] arr = {1, 2, 3, 4, 5}; int min = arr[0]; for(i=1; i<5; i++) { if(min > arr[i]) min = arr[i]; } Console.Write("Minimum value of Array: {0}", min); } } }

Output

Minimum value of Array: 1

In the following example, we will get any five integer values from the user and return the minimum value among those.

Example

C# Compiler
using System; namespace myApp { class Program { static void Main(string[] args) { int i, min; int[] arr = new int[5]; Console.WriteLine("Enter any 5 (int) numbers: "); for(i=0; i<5; i++) arr[i] = Convert.ToInt32(Console.ReadLine()); min = arr[0]; for(i=1; i<5; i++) { if(min > arr[i]) min = arr[i]; } Console.Write("Minimum value of Array: {0}", min); } } }

Output

Enter any 5 (int) numbers: 5 4 6 5 7 Minimum value of Array: 4

Reminder

Hi Developers, we almost covered 90% of String functions and Interview Question on C# with examples for quick and easy learning.

We are working to cover every Single Concept in C#.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author