Programming Project #3 – Link List Card Games One of the nice things about Java is it is very easy to do fun things with

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Programming Project #3 – Link List Card Games One of the nice things about Java is it is very easy to do fun things with

Post by answerhappygod »

Programming Project #3 – Link List Card Games
One of the nice things about Java is it is very easy to do funthings with graphics. The start code provided here willdisplay a deck of cards on the screen and shuffle them.
Your mission, is to start with this code and build acard game. Blackjack, poker solitaire, what ever yourheart desires. Blackjack is the easiest. Obviously anyprogram you write will not just display all the cards on thescreen, it will not reveal the cards until dealt. And please,52-Pickup is not a valid game for this project
Students that are not strong Java programmers please do not gettoo ambitious, it is enough to deal Blackjack (dealer and player),hit and stand. Some basic scoring of the game isrequired, but keep it simple.
The cards you see on the screen will be part of a Linked List.When you deal a hand of cards, you must create your own Linked Listof cards and move the dealt card(s) from the deck's linked list tothe hands linked list.
Make sure you pay attention to the following guidelines for thisproject:
Here are some hints that make this project easier:
Here DownloadHereis a zip file with the cards of the deck.
You will need to download and unzip this file intothe same directory as your project filesin order to load card images and display them.
Here is the code you should start with.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply