Write a program to keep records and perform statistical analysis for a team of players. The information of each Player contains ID, Name, Gender, match scores int[] (size should be total matches played), The program will prompt the user to choose the operation of records from a menu on JFrame as shown below:
============================================
                                            Menu
============================================
1. Add Player record
2. Delete Player record
3. Update Player record
4. View all Players (in JTable on JFrame)
5. Calculate the average of a selected Player’s score.
6. Find Player by ID (display details of player in Jtextarea).
Ask the user to enter his/her choice then perform the desired function.
 Note: All records store in a Array List of Players and use JFrame.
Comments
Leave a comment