Ejemplo n.º 1
0
 private void printStats() {
   System.out.println(
       "Point of each team ... Team1: "
           + team1.points()
           + " Team2: "
           + team2.points()
           + " Team3: "
           + team3.points()
           + " Team4: "
           + team4.points());
   System.out.println(
       SoccerTeam.getGoals()
           + " total goals scored and "
           + SoccerTeam.getGames()
           + " total games played");
 }