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.
4
votes
2answers
261 views
How is my BlackJack game design?
This is command line BlackJack game created in Java as my final project for advanced programming class...
What do you think about it?
Have I used OOP correctly?
What grade should I get for this? :D
...
3
votes
2answers
455 views
Black Jack Game in Python
Following is my code for a blackjack Game I've written:
import random
from random import choice
import os
import time
import texttable
class Stack():
def __init__(self, replay, winnings):
...
3
votes
2answers
2k views
BlackJack code review (Beginner)
I am very new to Java and programming theory and desperately trying to improve my knowledge. This is the first program I've made without help and really would appreciate some feedback. I know there ...