I need help creating a simple blackjack program with C++. Any help would be appreciated.
![]()
This is a discussion on Blackjack within the Game Programming forums, part of the General Programming Boards category; I need help creating a simple blackjack program with C++. Any help would be appreciated....
I need help creating a simple blackjack program with C++. Any help would be appreciated.
![]()
ask a more specific question.
anyway,
clues:
you have to use randomize() and rand() somewhere![]()
to generate the cards while playing the game
you can create an array of all the cards and their "values" (J = 10,
etc)
these will be able to start you off on the right track...
What is the value for A in blackjack? I'm askin' this because I'm working on a blackjack game and the array doesn't let me use characters.
if you want to use characters use a char aray.
char cards[52]
anyways by A I am persuming an Ace, witch has the value of either 11 or 1.
I shall call egypt the harmless dragon
-Isaiah 30.7
Ok, I got the array for the card values, thanks.