public class Team { String name; // The name of the Team int wins; // The number of games that the Team won int losses; // The number of games that the Team lost int ties; // The number of games that the Team tied public Team(String aName) { name = aName; wins = 0; losses = 0; ties = 0; } public String toString() { return("The " + name + " have " + wins + " wins, " + losses + " losses and " + ties + " ties."); } }