Skip to content

Latest commit

 

History

History
41 lines (22 loc) · 1007 Bytes

File metadata and controls

41 lines (22 loc) · 1007 Bytes

Lab Quiz #1

You are given two classes, in the following diagram:

Class Diagram

  • The Team class holds the team members and can display the team members.
  • The Main class invokes the team class.

Your Task

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.

Using Eclipse

Simply create a new "Java Project" and select the location as this folder.

Using Command Line

To compile:

javac src/com/ku/quiz/*.java

To run:

java -cp src com.ku.quiz.Main