You are given two classes, in the following diagram:
- The Team class holds the team members and can display the team members.
- The Main class invokes the team class.
Each person in the team must modify the Main class to add their own ID and full name to the Team instance.
When run, the program should display your ID and name.
Commit and push your work to the GitHub repository.
In the end, the program should display everyone's name in the team.
Every team member MUST add their own name, and MUST NOT add anyone else.
Simply create a new "Java Project" and select the location as this folder.
To compile:
javac src/com/ku/quiz/*.java
To run:
java -cp src com.ku.quiz.Main