Get Minimum and Maximum Values from User Inpu in C#

In this C# program, the task is to write a function named "GetMinMax" that prompts the user to enter two values: a minimum and a maximum. The program should validate the input such that the maximum value is always greater than or equal to the minimum value. If the user enters an invalid maximum (i.e., smaller than the minimum), the program should prompt them to re-enter the maximum value until it meets the condition. The program should also handle user inputs properly and return both the minimum and maximum values.



Group

Functions in C#

Objective

1. Prompt the user to enter the minimum value.
2. Prompt the user to enter the maximum value.
3. Check if the maximum value is greater than or equal to the minimum value.
4. If the maximum value is invalid (less than the minimum), ask the user to re-enter the maximum value.
5. Return both values once they are valid.

Write a C# function named "GetMinMax", which will ask the user for a minimum value (a number) and a maximum value (another number). It should be called in a similar way to:

GetMinMax( n1, n2);


Example:
Enter the minimum value: 5

Enter the maximum value: 3.5
Incorrect. Should be 5 or more.
Enter the maximum value: 7


The function should ensure the minimum is less than or equal to the maximum, and it should return both values.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Function to get the minimum and maximum values from the user
    static void GetMinMax(out double minValue, out double maxValue)
    {
        // Prompt for the minimum value
        Console.Write("Enter the minimum value: ");
        minValue = Convert.ToDouble(Console.ReadLine()); // Read and convert the minimum value
        
        // Prompt for the maximum value
        Console.Write("Enter the maximum value: ");
        maxValue = Convert.ToDouble(Console.ReadLine()); // Read and convert the maximum value
        
        // Loop until the maximum is greater than or equal to the minimum
        while (maxValue < minValue)
        {
            // If the maximum is less than the minimum, ask the user to re-enter the maximum
            Console.WriteLine($"Incorrect. Should be {minValue} or more.");
            Console.Write("Enter the maximum value: ");
            maxValue = Convert.ToDouble(Console.ReadLine()); // Re-enter the maximum value
        }
    }

    static void Main()
    {
        double minValue, maxValue;
        
        // Call the GetMinMax function
        GetMinMax(out minValue, out maxValue);
        
        // Display the valid minimum and maximum values
        Console.WriteLine($"The minimum value is: {minValue}");
        Console.WriteLine($"The maximum value is: {maxValue}");
    }
}

 Output

Enter the minimum value: 5
Enter the maximum value: 3.5
Incorrect. Should be 5 or more.
Enter the maximum value: 7
The minimum value is: 5
The maximum value is: 7

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 Product of Two Numbers Using Sums 'Iterative and Recursive' in C#

    In this exercise, you are required to write two functions in C#. Both functions will calculate the product of two numbers, but the methods used will be different. The first functio...

  • Simple C# Program with Functions

    This C# program demonstrates the use of functions by defining two simple methods: SayHello and SayGoodbye. The Main method calls these functions sequentially to display a greeting ...

  • C# Program with Functions Accepting Parameters

    This C# program demonstrates the use of functions that accept parameters. The program defines two functions: SayHello and SayGoodbye. The SayHello function accepts a string paramet...

  • C# Program with a Function to Sum Two Numbers

    This C# program defines a function called Sum that accepts two integer parameters, adds them together, and returns the result. The Main method initializes two integer variables (x ...

  • C# Program to Count Spaces in a String

    This C# program defines a function called CountSpaces that accepts a string as a parameter and returns the number of spaces in that string. The Main method calls this function with...

  • C# Program to Write Centered Text

    This C# program defines a function called WriteCentered that takes a string as a parameter and writes it centered on the screen, assuming a screen width of 80 characters. The progr...