This project was created as part of an assignment or coursework for CSE102 Computer Programming. As a first-year Computer Engineering student, I developed this project to enhance my skills in software development and algorithm design.
If you're reviewing this project, your feedback or suggestions would be greatly appreciated. Thank you!
This project simulates a simple university management system. It is used to manage student records and grades.
- Add student
- Enter grades
- View student information
- List all students
- Automatically calculate grade average
- Determine letter grade
When the program is run, the desired operation is selected from the menu:
- Add Student: Creates a new student record
- Enter Grade: Adds a grade to an existing student
- View Student Information: Shows the details of a single student
- List All Students: Lists all registered students
- Exit: Terminates the program
- Developed with Java 8
- Can be compiled using Maven
- Takes user input from the console
- Holds 5 course grades for each student
- Grades must be between 0-100
mvn clean compile
mvn exec:java -Dexec.mainClass="com.university.Main"Yahya Efe Kuruçay