Create student course marks records management projects to practice using ArrayList and other java method.
- Create, delete, update, find, display Student id, first name, last name, gender;
- Create, delete, upadte, display Course id, name;
- Create, delete, update, find,display Results with student object, course object, mark1, mark2;
- Main menu to allow user swith to choose: 1: Student, 2: Course, 3: Results, 4: Quit.
- And submenuchoose from 1: Create, 2: delete, 3: update, 4: find, 5: display etc options to deal with Student and course, results data.
- Back to main menu and submenu;
- Check if records is empty then ask to create it.
2022.02.28
- Fixed results delete method issue: only can delete the first item. By making a new delete item collection solved the problem.
- Fixed issue is course delete method loop.