The source code to find the smallest and largest elements of the array using predefine methods is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.
//C# program to find the smallest and largest
//elements of an array using predefined methods.
using System;
using System.Linq;
class Sample
{
static void Main()
{
int[] MyArray = { 40,30,20,10,50 };
int large = MyArray.Max();
int small = MyArray.Min();
Console.WriteLine("Largest Element : " + large);
Console.WriteLine("Smallest Element : " + small);
}
}
Output:
Largest Element : 50
Smallest Element : 10
Press any key to continue . . .
Explanation:
In the above program, we created a class Sample that contains an array of integers.
int large = MyArray.Max();
int small = MyArray.Min();
In the above code, we find the largest and smallest elements from the array. Here we need to import "System.Linq" namespace into the program
Program:
The source code to find the smallest and largest elements of the array using predefine methods is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.
Output:
Explanation:
In the above program, we created a class Sample that contains an array of integers.
In the above code, we find the largest and smallest elements from the array. Here we need to import "System.Linq" namespace into the program
need an explanation for this answer? contact us directly to get an explanation for this answer