CIS525 Final Project Requirements

Total Page:16

File Type:pdf, Size:1020Kb

CIS525 Final Project Requirements

Final Project Requirements Poker Statistics

Create a program to keep track of poker statistics. The program will store the amount of winnings per week for 8 weeks. If a player doesn’t play any of those 8 weeks, his winnings for those weeks would be 0. Your program will allow for adding new players, updating existing players, and will sort the players based on their total winnings.

 Create a Person class that includes social security number, first and last name.  Create a Location class that includes Casino name and State.  Create a Winnings class that includes the amount of winnings for 8 weeks (if a player doesn’t play for a week, he gets a 0) and a total winnings amount.

Your program should ask the user for the data (person, location, and winnings). After getting the data, the program should search the file (by ssn) to make sure that player isn’t already in the file. If the player is already in the file, his/her record should be removed and the new data should be written to the file instead. If the player isn’t in the file, his/her record should be written at the end of the file.

The user should be able to sort the records on the total winnings amount and display a list of all players in sorted order.

Your application must include the following:

Constructors Delegate Arrays Abstract Class or Interface Exception Handling Static Data Members Overloaded Operator or overridden method MessageBox Inheritance Data Validation File Input/Output Value Added - something not listed above

Recommended publications