-2

すべての System.out.println の代わりに、JOptionPane を使用したいと考えています。プログラムがコードをスキップする方法を説明する方法がわかりません。これを見て、うまくいくように助けていただければ幸いです。

//Step 1: Import Java APIs
 import java.util.InputMismatchException;
 import java.util.Scanner;
 import javax.swing.*;



//Step 2: Name File and Class
 public class GolfScores {




//Step 3: Declare All Variables  

 public static void main(String[] args) {
  int hole9 = 0;
  int hole18 = 0;
  String holeChoice;

  Scanner input = new Scanner(System.in);


//Step 4: The program accepts INPUT from the user

  for (;;) {
   try {
 holeChoice =   JOptionPane.showInputDialog("For hole 9, please enter 9. If you are on hole 18, please enter 18 ");

     if (holeChoice.equals(9)) {
        System.out.println("The par for this hole is 3. Please enter if you this hole took you: "
                    + "1, 2, 3, 4, 5, 6+ shots");            
        hole9 = input.nextInt();

    } else if (holeChoice.equals(18)) {
        System.out.println("The par for this hole is 5. Please enter if you this hole took you: "
                    + "1, 2, 3, 4, 5, 6, 7 or 8+ shots");
        hole18 = input.nextInt();

    } else if (holeChoice.equals(18)) {
      System.out.println("Please enter a valid number");
      continue;
    }
    break;
} catch (InputMismatchException inputMismatchException) {
    System.err.printf("\nException: %s\n", inputMismatchException);
    System.out.println("Please enter a valid number.");
    input.next();
}
}


//Step 5 & 6: The user input is PROCESSED by Java and uses math to  calcualte an answer to output. The user's score is then output for them to see.
 if (hole18 == 1) {
   System.out.println("Your score for this hole was a hole in one!");

 } else if (hole18 == 2) {
   System.out.println("Your score for this hole was albetross.");

 } else if (hole18 == 3) {
   System.out.println("Your score for this hole was eagle.");

 } else if (hole18 == 4) {
   System.out.println("Your score for this hole was birdie.");

 } else if (hole18 == 5) {
   System.out.println("Your score for this hole was par.");

 } else if (hole18 == 6) {
   System.out.println("Your score for this hole was boogie.");

 } else if (hole18 == 7) {
   System.out.println("Your score for this hole was double boogie.");

 } else if (hole18 >= 8) {
   System.out.println("You need some more practice at golf.");

 } else if (hole18 <= 0) {
   System.out.println("Please input a valid number.");
   input.next();

 }


   if (hole9 == 1) {
   System.out.println("Your score for this hole was a hole in one!");

 } else if (hole9 == 2) {
   System.out.println("Your score for this hole was birdie.");

 } else if (hole9 == 3) {
   System.out.println("Your score for this hole was par.");

 } else if (hole9 == 4) {
   System.out.println("Your score for this hole was boogie.");

 } else if (hole9 == 5) {
   System.out.println("Your score for this hole was double boogie.");

 }  else if (hole9 >= 6) {
   System.out.println("Your need some more practice at golf.");

  }

 try {
  Thread.sleep(3000);                
}     catch(InterruptedException ex) {
      Thread.currentThread().interrupt();
}

    System.out.println("Thank you for playing Java Golf. Please come      again");

   }

}

4

2 に答える 2

2

JOptionPane.showInputDialogを返すString場合、あたかも であるかのように結果を比較していますInteger

holeChoice =   JOptionPane.showInputDialog("For hole 9, please enter 9. If you are on hole 18, please enter 18 ");
//...
if (holeChoice.equals(9))  // this will always be false

ユーザーが を入力した場合9、 との比較int 9は機能しません。チェックする値に引用符を追加する必要があります。

元:

if (holeChoice.equals("9"))

同様に、入力を解析して に変換しようとすることもできますがint、無効なユーザー入力のドアを開く可能性があります (確認する必要があります)。

try {
   Integer choice = Integer.valueOf(holeChoice);
   //...
   if (choice.equals(9)) { // works now...
}
catch (NumberFormatException ex) {
   // user didn't enter a number!
}
于 2015-01-21T22:50:42.630 に答える
1

からの戻り値JOptionPane.showInputDialog(..)は文字列なので、次を使用します。

 if (holeChoice.equals("9")) { ... }

または、次を使用して文字列を整数に解析します。

Integer.parseInt(holeChoice);
于 2015-01-21T22:50:25.443 に答える