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
- Host: GitHub
- URL: https://github.com/roggersanguzu/maximum_vs_minimum_array_values
- Owner: roggersanguzu
- Created: 2023-08-11T12:44:18.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-11T12:48:07.000Z (about 2 years ago)
- Last Synced: 2025-03-06T07:29:52.242Z (7 months ago)
- Language: C#
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
30The program will output:
The maximum value is 30
The minimum value is 5