public class Team { /* * Variables are usally private, * sometimes a constant will be public. * * We need four: * total, which cotains the scores for the entire team * maxTeamSize, how many can be on a team * numberOfScores, how many scores have been added * scores, the array of Scores can can hold the score and name * of up to the maxTeamSize of members on the team */ public Team(int max) { /* Your code here */ } public Team(Team other) { /* Your code here */ } /* * the add method has two parameters, one for the name of the * team member and their score. * * If there is enough room to add a new score * then a new Score object is made, and placed * in the next evailable location in the * scores array */ public void add(String name,int score) { /* your code here */ } /* * winner (or MVP might be a better name) * will go through all the availible scores * to find the largest score, and then return * the name of the team memeber that had that score */ public String winner() { /* Your code here */ } }