Question
I'll give a like for an attempt. In C# Create a program to keep track of poker statistics. The program will store the amount of
I'll give a like for an attempt.
In C# 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 doesnt 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 doesnt 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 isnt 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 isnt 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
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started