Description: In this project, we will implement a simplified version of the card game called Blackjack, also
sometimes called 21. It is a relatively simple game played with a standard deck of 52 playing
cards. There are two principals, a dealer and a player. The player starts with a bankroll, and the
game progresses in rounds called hands.
At the start of each hand, the player decides how much to wager on this hand. It can be any
amount between some minimum allowable wager and the player’s total bankroll, inclusive.
After the wager, the dealer deals a total of four cards: the first face-up to the player, the second
face-up to himself, the third face-up to the player, and the fourth face-down to himself. The
second card of the dealer which is face-down is called the hole card.
To Search:
File list (Check if you may need any files):
test.out
sample.txt
result.1000.1000.simple.decrypted.A.txt
result.1000.1000.counting.decrypted.B.txt
rand.h
rand.cpp
player1.cpp
player.h
player.cpp
main.cpp
hand1.cpp
hand.h
hand.cpp
example.cpp
deck1.cpp
deck.h
deck.cpp
card.h
card.cpp
blackjack_old.cpp
blackjack.cpp
1.out