Tagged Questions
Card Game – Where the aim is to get your cards as closer to 21 then the dealer, while not going over. J, Q, K are worth 10. A are either 11 or 1.
9
votes
5answers
685 views
Is there an elegant way to deal with the Ace in Blackjack?
My kiddo had a homework assignment to write Blackjack in Java. I helped him a little but for the most part he did it all himself and it actually plays pretty well. He even caught an error I didn't see ...
5
votes
2answers
253 views
More efficient solution to CodingBat blackjack?
Here's the codingbat java problem:
Given 2 int values greater than 0, return whichever value is nearest
to 21 without going over. Return 0 if they both go over.
blackjack(19, 21) → 21
...
2
votes
3answers
540 views
BlackJack Algorithm
What is the general alogirthm for a BlackJack game ?
I'm writing one in c++ and end up having WAY too many if statements which ruin the whole thing.
The project is a win32 GUI application, and Im ...
2
votes
3answers
190 views
Data structures for a Blackjack game
I'm trying to learn how to use Ruby and as my first application I'd like to build a console based Blackjack game.
I'm not too familiar with the Ruby constructs and the only way I'll learn and feel at ...
2
votes
5answers
558 views
How to have a method pause and wait for input with Android?
Basically I have created a Blackjack app that uses several methods that get called and pass a long the information that is needed (about cards and actions). I have 2 buttons displayed on screen that ...
2
votes
2answers
346 views
i violated D.R.Y. help me please?
I'm making a blackjack sim and I want to deal the cards how it would be in a casino,
i.e. all players get dealt a card, dealer gets one face down, players get another card, dealer gets one face up
...
1
vote
3answers
125 views
what am I doing wrong blackjack file counter in Java?
I am doing this exercise, the exercise says this :
*Given an input file containing 1000 random blackjack hands between 3 players (here: blackjack.txt), calculate the number of blackjacks encountered ...
1
vote
4answers
128 views
question about else statement…blackjack in python
Python newbie here. I'm trying to create a black jack game in which the user plays against the computer. I think where I'm having trouble is with the if, elif statements here. What I want to know ...
1
vote
4answers
586 views
Is there an easy way to display playing cards in a WinForms app?
I am writing a quickie BlackJack Winforms app to demonstrate a couple of concepts. The engine itself is fairly simple, however, I'd like to display actual playing cards on the WinForm.
Is there a ...
0
votes
3answers
45 views
a little stuck on simple black jack program
So I'm working on a Black jack program and I'm a little stuck. I'll warn everyone that I'm really new to programming, also, I'm mid-project....so there are some loose ends and unused variables, and ...
0
votes
2answers
140 views
Blackjack Program
I have to create a BlackJack program that plays with 7 players and a Dealer. I have to use a switch or and if statement for the suit type and this statement can only be used once.
What I know is not ...
0
votes
4answers
160 views
Java Simple BlackJack Game, java.lang.NullPointerException
I am writing a java program to make a simple blackjack game.
I am using an array of card objects as the users hand.
the user will be dealt two cards in their hand, however they can ask for another ...
0
votes
2answers
56 views
How do I make a variable made out of a string global in python?
I'm trying to make a blackjack game.
I've made functions for drawing cards and checking if sum in one's hand exceeds 21 but only for 3 players. That was easy I had 3 lists.
But I want to do it for N ...
0
votes
1answer
76 views
PHP Black Jack game; updating display
my first question on stackOverflow! Have read tons of useful tidbits on here, but haven't been able to find a useful answer to the following question.
I've written a blackjack game in PHP as a ...
0
votes
5answers
164 views
Random Numbers in C++
im creating a BlackJack Program. I want the cards to be randomly dealt. if i use the rand() funtion and initialize srand() to time(NULL) then all the cards turn out to be same. Any idea what the ...
0
votes
1answer
324 views
BlackJack cards vector c++/random numbers
I followed some of the answers here on the site but I still have a problem: after I generate my vector of cards when I run the program the card numbers are totally off:
first card:100
second card:22
...
0
votes
1answer
171 views
Getting an Ace value to represent a 1 or a 11
I'm playing with some code for a blackjack program but I'm having trouble finding a way to make the Ace be a 1 or an 11, like in real blackjack. This isn't homework. I'm just getting back into ...
0
votes
3answers
356 views
Handling aces and finding a segfault in a blackjack program
Here's what i have so far...
I have yet to figure out how i'm going to handle the 11 / 1 situation with an ace, and when the player chooses an option for hit/stand, i get segfault.
HELP!!!
updated ...
0
votes
4answers
218 views
Scheme redefine a list
I have a list called hand and another one called deck, the main goal here is to take the first card (or element ) in the list deck and put it in the list hand when i call the fnction draw...
> ...
0
votes
1answer
309 views
Scheme homework Black jack help
So I need to do a game of blackjack simulator, butt can't seem to figure out whats wrong with the shuffle it's suppose to take a card randomly from the pack the put it on top of the pack. The delete ...
0
votes
1answer
507 views
Object-Oriented Black Jack in VB.net
Alright, so I want to improve my programming and object orientation skills. I want to program a fully object oriented blackjack game in VB.net under Visual Studio 2008. The first thing I did was learn ...
-2
votes
2answers
528 views
Python - Blackjack
def showCards():
#SUM
sum = playerCards[0] + playerCards[1]
#Print cards
print "Player's Hand: " + str(playerCards) + " : " + "sum"
print "Dealer's Hand: " + str(compCards[0]) + " ...