A simple, interactive Java console application to perform basic statistical analysis on a list of numbers.
Analyze List Number is a lightweight Java tool designed to take a sequence of numbers from the user and calculate key statistical data. It is perfect for educational purposes or quick data checking in the terminal.
- Custom Inputs: Specify the exact number of items you want to analyze (up to 127).
- Max & Min: Automatically finds the highest and lowest values.
- Averages: Calculates the mathematical mean (average).
- Threshold Counting: Counts exactly how many numbers fall above and below the calculated average.
- Colorized Terminal: Features a custom colored developer signature in the terminal.
To run this project, you will need to have Java installed on your machine.
- Java JDK 8 or higher.
- Clone the repository:
git clone https://github.com/xedi1/Analyze-List-Number.git
- Navigate to the directory:
cd Analyze-List-Number - Compile the Java file:
javac AnalyzeListNumber.java
- Run the program:
java AnalyzeListNumber
When you run the program, the terminal will prompt you to enter your data:
=== Developed by Hadi Gholipour ===
Enter Count Number (N:Integer: Max 127): 5
Enter Number 1 of 5: 12.5
Enter Number 2 of 5: 45
Enter Number 3 of 5: 8.2
Enter Number 4 of 5: 19
Enter Number 5 of 5: 33.4
================ ANALYSIS RESULTS ================
Maximum: 45.00
Minmum: 8.20
Average: 23.62
Count Number Upper Than Average: 2
Count Number Lower Than Average: 3
---
Hadi Gholipour
If you found this repository helpful, please consider leaving a ⭐!