Min and Max Values in an Array in C#

This C# program defines a function named "MinMaxArray" that takes an array of floating-point numbers and returns the minimum and maximum values stored in the array using reference parameters. The function will modify the values of the reference parameters for the minimum and maximum numbers found in the array. After calling this function, the minimum and maximum values will be updated accordingly. This program is designed to help understand how to work with reference parameters in C# and how to find the smallest and largest values in a given set of numbers.



Group

Functions in C#

Objective

1. Create a function named MinMaxArray that accepts an array of floating-point numbers and two reference parameters for the minimum and maximum values.
2. Inside the function, iterate through the array to find the minimum and maximum values.
3. Return the minimum and maximum values by modifying the reference parameters.
4. Test the function by calling it with an array and printing the minimum and maximum values.

Write a C# function named MinMaxArray, to return the minimum and maximum values stored in an array, using reference parameters:

float[] data={1.5f, 0.7f, 8.0f}
MinMaxArray(data, ref minimum, ref maximum);
(after that call, minimum would contain 0.7, and maximum would contain 8.0)

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Function to find minimum and maximum values in an array
    static void MinMaxArray(float[] array, ref float min, ref float max)
    {
        // Initialize min and max with the first element of the array
        min = array[0];
        max = array[0];

        // Loop through the array to find the actual min and max values
        foreach (float num in array)
        {
            // Update min if a smaller value is found
            if (num < min)
            {
                min = num;
            }
            // Update max if a larger value is found
            if (num > max)
            {
                max = num;
            }
        }
    }

    static void Main()
    {
        // Example array of floating-point numbers
        float[] data = { 1.5f, 0.7f, 8.0f };

        // Variables to store the minimum and maximum values
        float minimum, maximum;

        // Call the MinMaxArray function to find the min and max
        MinMaxArray(data, ref minimum, ref maximum);

        // Output the results
        Console.WriteLine("Minimum: " + minimum);
        Console.WriteLine("Maximum: " + maximum);
    }
}

 Output

If the input is:
float[] data = { 1.5f, 0.7f, 8.0f };

The output will be:
Minimum: 0.7
Maximum: 8.0

Share this C# Exercise

More C# Practice Exercises of Functions in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.