CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2011
    Posts
    1

    Lightbulb Hw start guidance

    I'm looking for advice on how I should begin my C++ assignment that me and other teammates are working on. I do not wish for anyone to attempt to or complete the project but simply give me advice on where to start. I was assigned this project today and I will post my findings along side any reccomendations anyone is able to offer. Thank you




    You have been hired by SportsFan, Inc. to design and develop a new software repository. The repository will allow for input, storage, and retrieval of information on current NBA and MLB players, including name (first and last), current team, position, and school.
    *
    You must create the software solution based on the following expectations:
    *
    1. Individual player information should be represented using classes.
    *
    2. All NBA players (and their corresponding information) stored within the system should be stored in one array of classes. All MLB players (and their corresponding information) should be stored in one array of classes. The maximum number of players that can be stored per league currently is 5.
    *
    3. Users should be able to enter information on a player not currently in the system, by providing all information on the player, then appropriately storing it. There should be no double entries for a player.
    *
    4. Users should be able to search for a player by first and last name. If the player is currently stored in the system, all player information should be output in the format
    Player:
    Team:
    Position:
    School:
    *
    5. Users should be able to output all NBA and MLB players currently stored (including player info), if they choose.
    *
    Upon completion of this assignment, any user should be able to search for, and enter information on any NBA or MLB player. They should also be able to display output that lists all NBA and MLB player information. *

  2. #2
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: Hw start guidance

    Start at number 1, and design your player class.

  3. #3
    VictorN's Avatar
    VictorN is online now Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: Hw start guidance

    So have you already created a class to represent a NBA and MLB players?
    If not - begin with creating it!
    Victor Nijegorodov

  4. #4
    Join Date
    Aug 2009
    Posts
    78

    Re: Hw start guidance

    My advice to you is to perform a DR(design review) with your other teamates.
    In the DR after you all understand perfectly the requirments of the project ,wrote down on paper the schema of the project, that includes all the classes ,and the connections between them.
    Then start implement the design, it sould be much easier.
    Last edited by inmar32; February 21st, 2011 at 03:44 PM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured