Let’s Learn: C++ Machine Problem – Episode 7.1 – Blackjack

Learn Blackjack Video Source & Info:

This is the first part of Blackjack.

This tutorial will show you how to make a blackjack game in C++.

Download files in this video at http://indiedevelopment.co

Visit our websites!

.co site: http://indiedevelopment.co
Facebook site http://Facebook.com/IndieDevelopment

Source: YouTube

Share this video:
Let’s Learn: C++ Machine Problem – Episode 7.1 – Blackjack

8 thoughts on “Let’s Learn: C++ Machine Problem – Episode 7.1 – Blackjack

  1. I might be commenting prematurely, but in your code you use a swap function in order to shuffle the cards. However in my class we are to create a double array for our deck, specifically cCardDeck [4][13] and I was wondering how to use the rand() function in order to pick a random card without the need of shuffling. I don't know how to use the rand function or if this is even the most efficent way. So my question to you is how to create a deck using these parameters?

  2. shuffling vs. dealing random card if not dealt. I want to write a program that 1 AI player vs dealer, shoe game. I want to collect the statistics such as how many games were played in a row to have to lose 6 games in a row, 7 games in a row, 8 games in a row, 9 games, etc. I want to start collecting those statistics with the "player" being simple, perhaps only mirroring the dealer rules of 16/17, etc. Then I want to compare those statistics when the "player" is a little smarter, for example, following the basic blackjack strategy, "counting cards," betting variation based on a combination of these statistics… jumping tables when a count is low…

Comments are closed.