JAVA PONTOON

JAVA PONTOON

when this code is run it just continues. It needs to stop at 21 Or then say bust.

Is someone able to help PLEASE :-)

import java.util.Scanner;

public class Pontoon{

 public static void main(String[] args) 

 {
    Scanner input = new Scanner(System.in);
    int playerScore = 0, computerScore = 0;
    String newCard = "";
    playerScore += dealCard();
    computerScore += dealCard();
    playerScore += dealCard();
    computerScore += dealCard();

    System.out.printf("Your score is %d would you like another card ? y/n ", playerScore);
    newCard = input.nextLine();
    if(newCard.equalsIgnoreCase("Y")) {
        while (newCard.equalsIgnoreCase("Y")) {
            playerScore += dealCard();
            System.out.printf("Your score is %d would you like another card ? y/n ", playerScore);
            newCard = input.nextLine();
        }
    }
    while(computerScore < 15){
        computerScore += dealCard();
    }
    checkWin(playerScore, computerScore);
}
public static int dealCard(){
    int value = (int) (Math.random() * 13) + 1;
    int score = 0;
    if(value == 1) {
        System.out.println("Ace!");
        score = 11;
    }else if (value == 13) {
        System.out.println("King!");
        score = 10;
    }else if (value == 12) {
        System.out.println("Queen!");
        score = 10;
    } else if (value == 11) {
        System.out.println("Jack!");
        score = 10;
    } else {
        score = value;
    }


    return score;
}

public static void checkWin(int Player, int Computer) {
    int player = Player;
    int computer = Computer;



    if (player > 21) {
        System.out.println("Player Bust");
    } else if (computer > 21) {
        System.out.println("Computer Bust");
    } else {
        if (player < computer) {
            System.out.println("Player Wins!");
        } else {
            System.out.println("Computer Wins!");




        }
    }
}

}

View Answers









Related Tutorials/Questions & Answers:
JAVA PONTOON
JAVA PONTOON  when this code is run it just continues. It needs to stop at 21 Or then say bust. Is someone able to help PLEASE :-) import java.util.Scanner; public class Pontoon{ public static void main(String[] args
Java Game Pontoon
Java Game Pontoon  Could someone help me create a programme for the game pontoon //play a game of pontoon import java.util.*; public class Pontoon { public static void main (String args[]) { //deal initial hands
Advertisements
Java game Pontoon
Java game Pontoon  Hello. I have trouble with my pontoon code. I ahve done it using simple java programming. It is working BUT it dosent stops when.... import java.util.Scanner; public class Pontoon{ public static void main
Pontoon
Pontoon  I have this code.. To play a game of Pontoon (Blackjack) i want to be able to reach the number of 21 and then stop. This does... for no. import java.util.Scanner; public class Pontoon { public static void main
ModuleNotFoundError: No module named 'pontoon'
ModuleNotFoundError: No module named 'pontoon'  Hi, My Python... 'pontoon' How to remove the ModuleNotFoundError: No module named 'pontoon... to install padas library. You can install pontoon python with following command
ModuleNotFoundError: No module named 'pontoon'
ModuleNotFoundError: No module named 'pontoon'  Hi, My Python... 'pontoon' How to remove the ModuleNotFoundError: No module named 'pontoon... to install padas library. You can install pontoon python with following command
ModuleNotFoundError: No module named 'wagtail-localize-pontoon'
ModuleNotFoundError: No module named 'wagtail-localize-pontoon'  Hi...: No module named 'wagtail-localize-pontoon' How to remove the ModuleNotFoundError: No module named 'wagtail-localize-pontoon' error? Thanks  
java
java  diff bt core java and java
java
java  what is java
JAVA
JAVA  how the name came for java language as "JAVA
java
java   why iterator in java if we for loop
java
java  explain technologies are used in java now days and structure java
java
java  different between java & core java
Java
Java   Whether Java is pure object oriented Language
java
java  is java open source
java
java  what is java reflection
java
java   in java does not pointers concept but what is nullpointers in java?   nullpointer is a runtime Exception
java
what is the size of array in java ?  what is the size of array in java ? what is the mean of finalize in java
java
java  give a simple example for inheritance in java
java
java  give a simple example for inheritance in java
java
java  why to set classpath in java
java
java  why to set classpath in java
java
java  why to set classpath in java
java
java  why to set classpath in java
java
java   What is ?static? keyword
java
java  RARP implementation using java socket
java
java  sample code for RARP using java
java
java  Does java allows multiline comments
Java
Java  how to do java in command prompt
java
java  Write a java code to print "ABABBABCABABBA
java
java  write a program in java to acess the email
java
java  send me java interview questions
java
java  how use java method
java
java  what are JAVA applications development tools
Java
Java   Whether Java is Programming Language or it is SOftware
java
java  is java purely object oriented language
java
java  why multiple inheritance is not possible in java
java
java  explain object oriented concept in java
java
java   difference between class and interface
Java
Java  how to draw class diagrams in java
java
java  write a java program using filenotfoundexception
java
java  hi im new to java plz suggest me how to master java[email protected]
java
java   How to set java Policy for applet using jdk 6
java
java pattern code for a given words  java pattern code for a given words pattern
java
java  dear, i want a field for date picker using java/java script
java
java  create java program for delete and update the details,without using database, just a normal java program
java
java  why methods in java raise exceptions   Have a look at the following link: Java Exceptions
java
java code to search the nodes  how to write the java code to search the nodes using routers
java
java online telephone directory  i need coding for online telephone directory..by using java....pls help me
java
java  how to edit text document by using java then how to edit starting and ending of text document by using java

Ads