0

ここに私のコーディングがあります: 何らかの理由で、最後に winscounter と losscounter を返そうとすると、到達不能ステートメントと表示されますが、tiecounter には表示されません。理由がわかりません!誰かがこれに答えることができれば、それは大歓迎です!!

public class RockPaperScissors {

    /**
     * @param args the command line arguments
     */

    static int value;  //computer's choice
    static int choice; //user choice
    static int tiescounter = 0;
    static int winscounter = 0;
    static int losscounter = 0;

    public static void main(String[] args) throws IOException {

        BufferedReader br = new BufferedReader (new InputStreamReader (System.in));// user input

        int repeat;

        do {
            System.out.println("ROCK PAPER SCISSORS"+
                    "\n===================");
            System.out.println("\n1=Rock" +
                    "\n2=Paper" +
                    "\n3=Scissors" +
                    "\n===========" +
                    "\nChoose:");

            choice = Integer.parseInt(br.readLine());

            if (choice !=1 && choice !=2 && choice !=3) {

                do{
                    System.out.println("\nError. Please choose Rock, Paper or Scissors.");
                    choice = Integer.parseInt(br.readLine());
                }
                while (choice !=1 && choice !=2 && choice !=3);
            }

            System.out.println();

            if (choice == 1){
                System.out.println("You have chosen Rock.");
            }
            else if (choice ==2){
                System.out.println("You have chosen Paper.");
            }
            else if(choice == 3){
                System.out.println("You have chosen Scissors.");
            }

            randomWholeNumber();

            if (value == 1){
                System.out.println("The computer has chosen Rock." );
            }
            else if (value == 2){
                System.out.println("The computer has chosen Paper." );
            }
            else if (value == 3){
                System.out.println("The computer has chosen Scissors." );
            }

            determineOutcome();
            System.out.println("Ties:"+ tiescounter);
            System.out.println("Wins: " + winscounter);
            System.out.println("Losses: " + losscounter);

            repeat = Integer.parseInt(br.readLine());

        }
        while (repeat==1);
    }

    public static int randomWholeNumber(){

        do{
            value=0;//resets random number
            //generates and returns a random number within user's range 
            value = (int) ((Math.random()*3)+1);
        } 
        while((value>3)||(value<1));
        return (value);
    }

    public static int determineOutcome(){

            if (value == choice){
                System.out.println("\nYOU'VE TIED");

                do{
                    tiescounter+=1;
                }
                while (tiescounter != tiescounter);
            }

            else if (value == 1){ //Rock
                if (choice == 2){ //Paper
                    System.out.println("\nYOU'VE WON");               
                    do{
                        winscounter +=1;
                    }
                    while (winscounter != winscounter);
                }
                else if (choice == 3){ //Scissors
                    System.out.println("\nYOU'VE LOST");
                    do{
                        losscounter+=1;
                    }
                    while(losscounter!=losscounter);
                }
            }

            else if (value == 2){ //Paper
                if (choice == 1){ //Rock
                    System.out.println("\nYOU'VE LOST");
                    do{
                        losscounter+=1;
                    }
                    while(losscounter!=losscounter);
                }
                else if (choice == 3){ //Scissors
                    System.out.println("\nYOU'VE WON");

                    do{
                        winscounter +=1;
                    }
                    while (winscounter != winscounter);
                }
            }

            else if (value == 3){ //Scissors
                if (choice == 1){ //Rock
                    System.out.println("\nYOU'VE WON");
                    do{
                        winscounter +=1;
                    }
                    while (winscounter != winscounter);                    
                }
                else if (choice == 2){ //Paper
                    System.out.println("\nYOU'VE LOST");
                    do{
                        losscounter+=1;
                    }
                    while(losscounter!=losscounter);
                }
            }

            return(tiescounter);
            return(winscounter);
            return(losscounter);
    }
}
4

2 に答える 2

1

関数は 1 つの値のみを返すことができます。が実行されるとすぐにreturn(tiescounter);、関数は終了します。3 つの値すべてを返したい場合は、それらをクラスでラップする必要があります。

ちなみに戻り値return(tiescounter);return tiescounter; 括弧で囲む必要はありません。どちらのステートメントも同じ結果になります。

于 2013-04-22T04:22:44.850 に答える
1

1 つのメソッドから同時に 3 つの異なる変数を返すことはできません。この場合、 はreturn(tiescounter);常に実行され、その場でメソッドが終了します。したがって、次の 2 行は到達不能になります。

determineOutcome()メソッドを void ie として宣言 public static void determineOutcome()し、その中のすべての return ステートメントを削除します。あなたのプログラムは動作します。

于 2013-04-22T04:24:48.077 に答える