An open API service indexing awesome lists of open source software.

https://github.com/roggersanguzu/maximum_vs_minimum_array_values


https://github.com/roggersanguzu/maximum_vs_minimum_array_values

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Value Range Finder

This simple C# program allows users to input a set of numbers and finds the maximum and minimum values from the provided inputs.

## How to Use

1. Clone or download the repository to your local machine.

2. Open the project using a C# development environment such as Visual Studio or Visual Studio Code.

3. Navigate to the `Program` namespace and locate the `Values` class in the code file.

4. Run the program by executing the `Main` method.

5. Follow the prompts on the console:
- Enter the number of values you want to store.
- Enter each value one by one.

6. The program will then display the maximum and minimum values from the entered inputs.

## Example

Suppose you run the program and enter the following inputs:
Please Enter the number of Values to be stored:
5
Please Enter the number:
10
Please Enter the number:
25
Please Enter the number:
5
Please Enter the number:
15
Please Enter the number:
30

The program will output:
The maximum value is 30
The minimum value is 5