3 or 4 Aces in a hand

#1
Hi, I'm new to Blackjack and I'm attempting to code a game. I came across a problem... I know 1 ace is worth 1 or 11 and 2 aces are worth 2 or 12. My problem is what happens if I get 3 or even 4 aces in a hand? Thanks
 
#2
trid3nt said:
Hi, I'm new to Blackjack and I'm attempting to code a game. I came across a problem... I know 1 ace is worth 1 or 11 and 2 aces are worth 2 or 12. My problem is what happens if I get 3 or even 4 aces in a hand? Thanks
3 Aces = 3 OR Soft 13
4 Aces = 4 OR Soft 14

Normally wouldn't have this happen in a real game, as you would split, and re-split if the game allows.
 
#3
Only the first ace would count as 11 (as with any hand that is only if it does not put the total over 21). Any additional aces would count as 1.

Although you wouldn't usually (playing American BS) have a hand consisting exclusively of 3+ Aces (like AJL said, since you'd normally split them), you could have a multi-Ace soft hand from hitting a soft hand and getting more Aces (though there would typically be at least one non-Ace card in the hand).
 
Top