试图理解我的猪java游戏中的错误

时间:2015-12-03 09:07:25

标签: java

我正在研究我的java类简介的最后一个项目,我很难理解我的项目中的错误以及如果你能告诉我为什么我会非常感激它,为什么它不会运行

public static void main(String[] args) {

Scanner scanner1;

int dice, dice2;
int pScore, cScore = 0;
int pTotalScore = 0;
int cTotalScore = 0;
final int maxScore = 750;
String input = "R";
String input2 = "R";
char repeat;
Random randomNumbers = new Random();

System.out.println("Welcome to Our version of the dice game Pig");
System.out.println("Here are the instructions");
System.out.println("On a turn, the player or computer rolls the die repeatedly");
System.out.println("Until either a 1,7,12, or 17 is rolled");
System.out.println("or the player or computer holds");
System.out.println("If a 1,7,12, or 17  is rolled, that player's turn ends");
System.out.println("and no points are earned");
System.out.println("If the player chooses to hold, all of the points rolled during");
System.out.println("that turn are added to his or her score.");
System.out.println("First player to 750 points or more WINS!");

System.out.print("\nPlease enter your name: ");
scanner1 = new Scanner(System.in);
String pName = scanner1.nextLine();
System.out.print("\nI Hope You have fun," + pName);



do { // run at least once. Start of loop
    dice = randomNumbers.nextInt(6) + 1;
    System.out.println();
    System.out.printf("%s you rolled a %d %n", pName, dice);

    if (dice == 1 || dice == 7 || dice == 12 || dice == 17) // if these numbers, end
    {
        pScore = 0;
        System.out.println("Turn over.");
        System.out.println(" " + pName + " total is " + pScore + " ");
        break;
    } else {    // else ask for re-roll
        pScore = dice;
        pTotalScore += pScore;
        System.out.print(+pScore + " Your turn total is " + pTotalScore + " ");
        System.out.print("Enter (R) to roll or (H)to hold: ");
        input = scanner1.nextLine();
        repeat = input.charAt(0);
    }

    if (repeat != 'R') { // if something other than R, end
        break;
    }

} while (pTotalScore < 750 || cTotalScore < 750); // allow repeat so long as scores are less than 750

    if (repeat == 'H') {
        System.out.println("Turn over.");
        System.out.print("Current score: " + pname + " has " + pTotalScore);
        System.out.println("The Computer has " + cTotalScore);
        break;

    }
    while (input.equalsIgnoreCase("R"));

    if (pTotalScore >= maxScore) {
        System.out.println("Your total Score is " + totalScore);
        System.out.println(+pname + "WINS!");
        break;
    }

    System.out.println();
    System.out.println("It is the Computer's turn.");
    do {

        dice2 = randomNumbers.nextInt(6) + 1;
        System.out.println("The Computer rolled: " + dice2);

        if (dice2 == 1 || dice2 == 7 || dice2 == 12 || dice2 == 17) {
            cScore = 0;
            System.out.print("Turn over");
            System.out.println("The Computer total is " + cTotalScore);
            break;
        } else {
            cScore = dice2;
            cTotalScore += cScore;
            System.out.print("The Computer's total is " + cTotalScore + " ");
            System.out.print("Enter (r) to Roll or (H)to Hold: ");
            input = keyboard.nextLine();
            repeat = input.charAt(0);
        }
        if (repeat == 'H') {
                System.out.println("Turn over");
                System.out.print("Current score:" + pName + " has " + pTotalScore);
                System.out.println(", The Computer has " + cTotalScore);
                break;
        }

    } while (input2.equalsIgnoreCase("R"));
    if (cTotalScore >= maxScore) {
       System.out.println("The Computer's score is " + cTotalScore + "\n");
        System.out.println("The Computer wins!!!!");
        System.out.printl("Run The uprisng has begun!!!!!!");
        break;
    }

Final3.java:112:错误:解析时到达文件末尾} ^ 1错误

现在问题是我得到错误基本上意味着我错过了}但我无法看到它会在哪里,无论我把它放在哪里它仍然说

Final3.java:112:错误:解析时到达文件末尾} ^ 1错误

2 个答案:

答案 0 :(得分:0)

你有一个while循环什么都不做 - while (input.equalsIgnoreCase("R")); - 并且你没有关闭你的main方法。最后添加}

答案 1 :(得分:0)

添加一个结束括号&#34;}&#34;最后,我希望这能解决你的目的。