Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
NBA Stats Application
2. Application description
The Helper Function
Core Functions
Menu Functions
Putting it all together

Instruction

Let's start with a short description and demonstration of the application we're going to write.

NBA Stats is a console application that stores basketball players' data and allows the user to see various statistics related to those players. For each player in the application, the app will have the following information:

  • First and last name.
  • Height in inches.
  • Number of matches (games) played in the last season.
  • Percentage of field goals (two- and three-point shots).
  • Current club (team).
  • Previous clubs (teams).

The application will offer the following options:

  1. Show sorted players.
  2. Show the top player in a given club.
  3. Check the relationship between a player and a club.
  4. Show the player with the most clubs.

Okay, let's see how the application should work!

Exercise

Play around with the application and see for yourself how it works. Click I'm done. Next exercise when you're ready to start coding!