Search:

Type: Posts; User: asad1221

Search: Search took 0.17 seconds.

  1. Replies
    3
    Views
    4,826

    Re: hangman 2 player game

    iam not sure on how to do that can u give me an example of how it would be?
  2. Replies
    3
    Views
    4,826

    hangman 2 player game

    I am creating a hangman code and i am done the basic code for my summative but i just need to add some small parts that i don't know how to do.

    So the game i am creating is 2 player, first player...
  3. Replies
    7
    Views
    950

    Re: can some one fix my black jack code

    my while loop is not working properly for the player. if i click hit first time it adds up score properly and everything but if i click hit again than it ignores the old number and only adds the new...
  4. Replies
    7
    Views
    950

    Re: can some one fix my black jack code

    my while loop is not working properly for the player. if i click hit first time it adds up score properly and everything but if i click hit again than it ignores the old number and only adds the new...
  5. Replies
    7
    Views
    950

    Re: can some one fix my black jack code

    it does not have to be any thing advanced. its supposed to be computer(dealer) vs. player. you have to deal #'s from 1-11.
  6. Replies
    7
    Views
    950

    can some one fix my black jack code

    import java.util.Scanner;

    public class Deck {

    public static void main(String[] args) {
    int deal=(int)(11*Math.random()+1);
    int deal1=(int)(11*Math.random()+1);
    int...
  7. Replies
    5
    Views
    965

    Re: Black Jack for dr. java

    You do not have to go in depth. I just have to continue dealing numbers to the player and dealer if they hit if they pass 21 it's a bust.
  8. Replies
    5
    Views
    965

    Re: Black Jack for dr. java

    import java.util.Scanner;

    public class Deck {

    public static void main(String[] args) {
    int deal=(int)(11*Math.random()+1);

    Scanner input = new Scanner(System.in);
  9. Replies
    5
    Views
    965

    Black Jack for dr. java

    i am trying to make a black jack game for dr. java and i am a beginner to this but i have to do it for my cs class and i want to know how do i make the program deal 2 cards to the dealer as well as...
Results 1 to 9 of 10