在我的ESP游戏方法中非法开始表达

时间:2014-10-21 21:15:14

标签: java jgrasp

public static String guessColor(扫描仪键盘)是我的错误所在。 错误如下:非法开始表达:公开,静态。错误:';'预期:在String和guessColor之间。错误';'预期:在Scanner和键盘之间。非法开始表达:at)在那一行。

public class RichardsonESPGame
{                  
public static void main(String[] args)
  {   
     String random;
     String guess;         
     Scanner keyboard = new Scanner(System.in);         

     random = computerColor();
     guess = guessColor(keyboard);         
     String end = recordGame(random, guess);
     System.out.println(end);

  keyboard.close();   
  } 
/**
In this method the color choices will be displayed.
*/        
public static String computerColor()
  {    
     Random rand = new Random();
     int color = rand.nextInt(5) + 1;
     return receiveColor(color);
  }      


/**
This method will give the computer and user its color options.
*/
public static String receiveColor(int color)
 {
     String selection;   
     switch (color)
     {   
        case 1:
        selection = "Red";
        break;
        case 2:
        selection = "Blue";
        break;
        case 3:
        selection = "Green";
        break;
        case 4:
        selection = "Yellow";
        break;
        case 5:
        selection = "Orange";
        break;
        default:
        System.out.println("Make a valid selection.");
        selection = null;
     }
     return selection;

/**
This method will get the user's color choice.
*/
 public static String guessColor(Scanner keyboard)
  {
    System.out.println("Enter a number from 1 to 5 to receive a color.\n 1 is Red\n 2 is Blue\n 3 is Green\n 4 is Yellow\n 5 is Orange\n");
    int richardsonGuessColor = keyboard.nextInt();
    String color = receiveColor(richardsonGuessColor);

    while (color == null)
     {
        System.out.println("Enter a number from 1 to 5 to receive a color.\n 1 is Red\n 2 is Blue\n 3 is Green\n 4 is Yellow\n 5 is Orange\n");
        int guess = keyboard.nextInt();
        color = receiveColor(richardsonGuessColor);
     }

    return color;         
   }

/**
This method will determine if user guesses correctly.
*/

public static String recordGame(String richardsonComputerColor, String richardsonGuessColor)
  {

     String end;
     end = "The computer's choice was: " + richardsonComputerColor;
     end += "Your choice was: " + richardsonGuessColor;

       if(richardsonGuessColor.equalsIgnoreCase("Red"))
        {
               if (richardsonComputerColor.equalsIgnoreCase("Red"))
              {
                 end += "You guessed correctly!";
              }     
              else
              {
                 result += "You guessed incorrectly.";
              }
        }

      else if(richardsonGuessColor.equalsIgnoreCase("Blue"))
           {
                  if (richardsonComputerColor.equalsIgnoreCase("Blue"))
                 {
                    end += "You guessed correctly!";
                 }      
                 else
                 {
                    result += "You guessed incorrectly.";
                 }
           } 

      else if(richardsonGuessColor.equalsIgnoreCase("Green"))
           {
                  if (richardsonComputerColor.equalsIgnoreCase("Green"))
                 {
                    end += "You guessed correctly!";
                 }      
                 else
                 {
                    result += "You guessed incorrectly.";
                 }
           }
     else if(richardsonGuessColor.equalsIgnoreCase("Yellow"))
           {
                  if (richardsonComputerColor.equalsIgnoreCase("Yellow"))
                 {
                    end += "You guessed correctly!";
                 }      
                 else
                 {
                    result += "You guessed incorrectly.";
                 }
        }
     else if(richardsonGuessColor.equalsIgnoreCase("Orange"))
           {
                  if (richardsonComputerColor.equalsIgnoreCase("Orange"))
                 {
                    end += "You guessed correctly!";
                 }      
                 else
                 {
                    result += "You guessed incorrectly.";
                 }
           }    
     return end;
  }

}

1 个答案:

答案 0 :(得分:0)

这是因为你从未在前一个方法中做过最后的结束括号。要修复它,你需要添加的是在recieveColor方法

上的return语句之后的一个结束括号