public class LeagueTestProgram { // Displays a league's teams to the system console public static void displayTeams(League aLeague) { for (int i=0; i totalPoints(teamWithMostPoints)) teamWithMostPoints = aLeague.teams[i]; } return teamWithMostPoints; } // Return the team that has the least points public static Team lastPlaceTeam(League aLeague) { Team teamWithLeastPoints = aLeague.teams[0]; if (aLeague.teams[0] == null) return null; for (int i=0; i