Tech Study

Write C# Program to Find Minimum and Maximum of Numbers

Introduction

I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability.

using System;
using System.Linq;
class Program
{
    static void Main()
    {
        int[] Arr = { 20, -10, -30, 0, 15, 10, 30 };
        Console.WriteLine("Maximum Element : " + Arr.Max());
        Console.WriteLine("Minimum Element : " + Arr.Min());
        Console.Read();
    }
}

Result

Write C# Program to Find Minimum and Maximum of Numbers
Write C# Program to Find Minimum and Maximum of Numbers

TaggedWrite C# Program to Find Minimum and Maximum of Numbers

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more