Student Grade Tracker is a simple Java console-based application that allows users to manage student grades efficiently. The program stores student records, calculates the average, highest, and lowest scores, and displays a summary report of all students.
- Add student names and grades
- Store data using ArrayList
- Calculate average score
- Find highest and lowest scores
- Display a summary report
- User-friendly console interface
- Java
- ArrayList
- Scanner
- Object-Oriented Programming (OOP)
- Compile the program:
javac StudentGradeTracker.java- Run the program:
java StudentGradeTracker===== Student Summary Report =====
Student Name Grade
--------------------------------
Alice 85.00
Bob 92.00
Charlie 78.00
--------------------------------
Average Score : 85.00
Highest Score : 92.00
Lowest Score : 78.00
- Update student grades
- Delete student records
- Save data to files
- GUI version using Java Swing or JavaFX
Developed as a Java programming project for learning data management and basic statistical analysis.