Create a program that allows you to store the data for players of a game. Console Player Manager COMNDND MENU view - view playera add - Add a player del - Delete a player exit - Exit program Specifications Create a database file (players_Data.db) that contains a Player table that stores the data for each player.
Specifications Create a database file (players_Data.db) that contains a Player table that stores the data for each player. CREATE TABLE if not exists Player Display the players in order by wins, starting with the player with the most wins. Assume that the name for each player is unique. Add an "update" command. This command should prompt the user to enter the name of a player. Then, it should let the user update the wins, losses, and ties for the player. Note: Games field shown in the view command is the sum of "Wins, Losses, and Ties" Games = Wins + Losses + Ties
Create a program that allows you to store the data for players of a game. Console Player Manager COMNDND MENU view - vie
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Create a program that allows you to store the data for players of a game. Console Player Manager COMNDND MENU view - vie
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!