C# Function to Validate Integer Input with Range

This C# function prompts the user to enter an integer value within a specified range. If the user inputs a value that is outside the given minimum and maximum range, the program will display an error message and prompt the user again until a valid integer is entered. The function "GetInt" will display a custom message and ensure that the user input meets the given constraints.



Group

Functions in C#

Objective

1. Define a function named "GetInt" that accepts a message, a minimum value, and a maximum value as parameters.
2. Display the message to the user, asking them to input an integer.
3. Check if the input is within the specified range.
4. If the input is outside the range, display an error message and prompt the user again.
5. Once a valid input is entered, return the value to the caller.

Write a C# function named "GetInt", which displays on screen the text received as a parameter, asks the user for an integer number, repeats if the number is not between the minimum value and the maximum value which are indicated as parameters, and finally returns the entered number:

Example usage:
age = GetInt("Enter your age", 0, 150);
Would display:
Enter your age: 180
Not a valid answer. Must be no more than 150.
Enter your age: -2
Not a valid answer. Must be no less than 0.
Enter your age: 20
(the value for the variable "age" would be 20)

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Function to get an integer input within a specified range
    public static int GetInt(string message, int min, int max)
    {
        int number;
        
        // Loop until a valid number is entered
        while (true)
        {
            // Display the prompt message
            Console.Write(message + ": ");
            
            // Try to parse the user input as an integer
            if (int.TryParse(Console.ReadLine(), out number))
            {
                // Check if the number is within the specified range
                if (number >= min && number <= max)
                {
                    // Return the valid number
                    return number;
                }
                else
                {
                    // Display an error message if the number is outside the range
                    Console.WriteLine($"Not a valid answer. Must be no less than {min} and no more than {max}.");
                }
            }
            else
            {
                // Display an error message if the input is not a valid integer
                Console.WriteLine("Not a valid number. Please enter an integer.");
            }
        }
    }

    public static void Main()
    {
        // Example usage of GetInt function
        int age = GetInt("Enter your age", 0, 150);
        
        // Display the entered age
        Console.WriteLine("Your age is: " + age);
    }
}

 Output

Enter your age: 180
Not a valid answer. Must be no less than 0 and no more than 150.
Enter your age: -2
Not a valid answer. Must be no less than 0 and no more than 150.
Enter your age: 20
Your age is: 20

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

  • Improved Version of Tasks Database with Functions

    This C# program demonstrates an improved version of a tasks database by splitting it into different functions. It allows the user to manage a list of tasks such as adding, displayi...

  • 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 thr...

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