[Solved] Overview Design App Basketball Team Unique Name Least 10 Players Member Variables Required Q37161840

c++, thanks for any help.
Overview: Design an APP for a basketball team with a unique name. There should be at least 10 players. The member variables required include team member’s names, jersey number, position played, and at least 3 stats. Positions are small forward, power forward, center, shooting guard and point guard. 1. A.) Design a class with member variables and appropriate member functions Data should be stored in a read/write file consisting of team member’s names, jersey number, position played, and at least 3 stats. Use an enumeration for at least one member variable 2. Use a header file for all declarations Create at least two constructors and initialize Create a destructor Create a text based menu to perform the following functions which will loop until the user selects Number 8 for Quit: 3. Enter “1” OPEN ( Add any function you need for your team) 4. Enter “2” Add or replace team members as needed along with their information. 5. Enter “3” Identify the top players based on stats. The number to identify depend on the number needed i.e. for basketball there are 5 players who will be the starters. 6. Enter “4” search by player name and other stats as requested by user. 7. Enter “5” sort by player name or stats as requested by user 8. Enter “6” to print all data. to screen Display sports team member’s names, jersey number, position played, and at least 3 stats Example stats: on the basketball team there are points scored, assists, rebounds and errors. 9. Enter “7” to print all data to file. 10. Enter “8” to Quit Show transcribed image text Overview: Design an APP for a basketball team with a unique name. There should be at least 10 players. The member variables required include team member’s names, jersey number, position played, and at least 3 stats. Positions are small forward, power forward, center, shooting guard and point guard. 1. A.) Design a class with member variables and appropriate member functions Data should be stored in a read/write file consisting of team member’s names, jersey number, position played, and at least 3 stats. Use an enumeration for at least one member variable 2. Use a header file for all declarations Create at least two constructors and initialize Create a destructor Create a text based menu to perform the following functions which will loop until the user selects Number 8 for Quit: 3. Enter “1” OPEN ( Add any function you need for your team) 4. Enter “2” Add or replace team members as needed along with their information. 5. Enter “3” Identify the top players based on stats. The number to identify depend on the number needed i.e. for basketball there are 5 players who will be the starters. 6. Enter “4” search by player name and other stats as requested by user. 7. Enter “5” sort by player name or stats as requested by user 8. Enter “6” to print all data. to screen Display sports team member’s names, jersey number, position played, and at least 3 stats Example stats: on the basketball team there are points scored, assists, rebounds and errors. 9. Enter “7” to print all data to file. 10. Enter “8” to Quit
Expert Answer
Answer to Overview: Design an APP for a basketball team with a unique name. There should be at least 10 players. The member variab… . . .
OR

