###Flaw with aces###
Flaw with aces
Currently, your program forces you to decide what to do with an ace as soon as it is dealt. So for example, if you were dealt A 3
, you might decide to treat the ace as an 11 and have a total count of 14. But if you hit and get a 10
, your program would consider that a bust. In real blackjack, if you had A 3 10
, you would actually only be at a 14 count still.
To fix this, you need to track whether the hand has any aces, and always treat the aces as value 1. Then at the last moment, when you are evaluating the hand for point count, you can attempt to add back 10 if possible.
###Flaw with aces###
Currently, your program forces you to decide what to do with an ace as soon as it is dealt. So for example, if you were dealt A 3
, you might decide to treat the ace as an 11 and have a total count of 14. But if you hit and get a 10
, your program would consider that a bust. In real blackjack, if you had A 3 10
, you would actually only be at a 14 count still.
To fix this, you need to track whether the hand has any aces, and always treat the aces as value 1. Then at the last moment, when you are evaluating the hand for point count, you can attempt to add back 10 if possible.
Flaw with aces
Currently, your program forces you to decide what to do with an ace as soon as it is dealt. So for example, if you were dealt A 3
, you might decide to treat the ace as an 11 and have a total count of 14. But if you hit and get a 10
, your program would consider that a bust. In real blackjack, if you had A 3 10
, you would actually only be at a 14 count still.
To fix this, you need to track whether the hand has any aces, and always treat the aces as value 1. Then at the last moment, when you are evaluating the hand for point count, you can attempt to add back 10 if possible.
###Flaw with aces###
Currently, your program forces you to decide what to do with an ace as soon as it is dealt. So for example, if you were dealt A 3
, you might decide to treat the ace as an 11 and have a total count of 14. But if you hit and get a 10
, your program would consider that a bust. In real blackjack, if you had A 3 10
, you would actually only be at a 14 count still.
To fix this, you need to track whether the hand has any aces, and always treat the aces as value 1. Then at the last moment, when you are evaluating the hand for point count, you can attempt to add back 10 if possible.