Find the Maximum Value in an Array of Real Numbers in C#

This C# program demonstrates how to write a function that receives an array of real numbers as a parameter and returns the greatest value from that array. The function iterates through all the elements in the array and compares them to find the largest one. This kind of function is useful when working with arrays of numeric data and needing to find the highest value efficiently.



Group

Functions in C#

Objective

1. Create a function named "Maximum" that accepts a float array as a parameter.
2. Iterate through the array to compare each element with the current maximum.
3. Return the highest value found in the array.
4. Test the function with an array of real numbers, such as {1.5f, 0.7f, 8.0f}.
5. Display the result using the console.

Write a C# function which returns the greatest value stored in an array of real numbers which is specified as parameter.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Function to find the maximum value in an array of floats
    public static float Maximum(float[] data)
    {
        // Initialize the max value to the first element in the array
        float max = data[0];

        // Iterate through the array and compare each element with max
        for (int i = 1; i < data.Length; i++)
        {
            // If the current element is greater than the max, update max
            if (data[i] > max)
            {
                max = data[i];
            }
        }

        // Return the largest value found
        return max;
    }

    // Main method to test the Maximum function
    public static void Main()
    {
        // Define an array of real numbers
        float[] data = {1.5f, 0.7f, 8.0f};

        // Call the Maximum function and store the result
        float max = Maximum(data);

        // Display the result
        Console.WriteLine("The maximum value is: " + max);
    }
}

 Output

The maximum value is: 8

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#.

  • Calculate Factorial Using an Iterative Approach in C#

    This C# program demonstrates how to calculate the factorial of a number using an iterative approach. The factorial of a number is the product of all integers from 1 to that number....

  • Write a Centered Title with Lines in C#

    In this C# program, we will create a function named "WriteTitle" that takes a string as input and displays it centered on the screen with a line above and below the text. The text ...

  • Command Line Title Writer in C#

    This C# program allows the user to provide a title from the command line. The program uses the previously created "WriteTitle" function to display the title in uppercase, centered ...

  • Count Digits and Vowels in a String in C#

    This C# function is designed to calculate the number of numeric digits and vowels within a given text string. The function, named "CountDV", accepts three parameters: the string to...

  • Check if a Character is Alphabetic in C#

    This C# function is designed to check if a given character is alphabetic, meaning it falls within the range of letters A to Z (both uppercase and lowercase). The function should re...

  • Check if a String is an Integer in C#

    This C# function is designed to check if a given string represents an integer number. The function should return a boolean value indicating whether the string can be successfully p...