About 63,700 results
Open links in new tab
  1. Simple Blackjack Game in c++ - Code Review Stack Exchange

    Aug 4, 2021 · I made a simple BlackJack game and I want to make it as good as possible before I move on to creating a few other games in my "casino" - let me know how I can improve it I …

  2. C# Singleplayer Blackjack Game - Code Review Stack Exchange

    Aug 26, 2018 · I recently finished a simple Blackjack game that I made to get better at C#. I am wondering how I can better organize or simplify my code. There are 4 files: Program.cs /* Blackjack …

  3. C++ Blackjack game - Code Review Stack Exchange

    Jun 30, 2016 · I made this small Blackjack game in the past as a way to practice C++ basics and have fun at the same time. I stopped working on the game during the last two years of my computer …

  4. Simple Blackjack game in Python - Code Review Stack Exchange

    Dec 15, 2016 · I am trying to create a simple Blackjack game. I am using GIST because the code sample takes forever to use. Current code: from random import randint def card_deck(): #sets the …

  5. Simple blackjack program in Java - Code Review Stack Exchange

    Dec 14, 2023 · I wrote this blackjack game for my APCSA class (already submitted) and was wondering if anyone had feedback on what parts of it are improperly written. My main concern is the fact that I …

  6. Blackjack game in Java - Code Review Stack Exchange

    Jan 20, 2021 · A BlackJack object represents one game, and its methods allow one to start and play the game. In this way, the methods of BlackJack can be unit tested, and the class can be reused and …

  7. Simple Blackjack game in console (update) - Code Review Stack …

    Sep 8, 2017 · A couple of days ago I posted the code for my Simple Blackjack console game. I have got some good reviews and since then I have been trying to improve the code. That previous question …

  8. Python blackjack code - Code Review Stack Exchange

    Jun 4, 2022 · For those wondering about the rules: Blackjack (twenty-one) is a casino game played with cards. The goal of the game to draw cards that total as close to 21 points as possible without going …

  9. Simple OOP Blackjack game in Python - Code Review Stack Exchange

    Oct 9, 2017 · I made a simple text based Blackjack game in Python 3 to help me implement OOP concepts. I only made one function outside of my classes which takes the user's name at the …

  10. Blackjack game in C++ - Code Review Stack Exchange

    May 17, 2022 · The blackjack tables in Las Vegas allow 5 or 6 players at a time, you could allow for other players at the table. Have a minimum bet, I bet zero once and it was allowed. Real casinos …