如果将字符串放在int输入变量上,如何添加else语句?

时间:2019-01-29 00:14:45

标签: java string if-statement int

无论我何时运行此代码,如果我输入字符串作为输入,都会在第11行出现错误。帮助?我不确定如何运行else语句,或者询问是否放置字符串而不是整数(选择变量)的内容。我是新手,非常感谢您的帮助!

这是我的代码:

import java.util.Scanner;

public class rockPaper {
    public static void main(String args[]) {
        System.out.println("Hello world");
        int rock = 0;
        int paper = 1;
        int scissors = 2;
        Scanner input = new Scanner(System.in);
        System.out.println("Rock, Paper, or Scissors(0, 1, or 2)? Enter your integer: ");
        int choice = input.nextInt();
        int aIChoice = (int) (Math.random() * 3);
        if (choice == rock) {
            switch (aIChoice) {
            case 0:
                System.out.println("AI chose rock.");
                System.out.println("Rock ties with rock!");
                break;
            case 1:
                System.out.println("AI chose paper.");
                System.out.println("Fail. Paper trumps rock.");
                break;
            case 2:
                System.out.println("AI chose scissors.");
                System.out.println("You win! Rock trumps scissors.");
                break;
            default:
                break;
            }

        } else if (choice == paper) {
            switch (aIChoice) {
            case 0:
                System.out.println("AI chose rock.");
                System.out.println("You win! Paper trumps rock.");
                break;
            case 1:
                System.out.println("AI chose paper.");
                System.out.println("Paper ties with paper!");
                break;
            case 2:
                System.out.println("AI chose scissors.");
                System.out.println("Fail. Scissors trumps paper.");
                break;
            default:
                break;
            }
        } else if (choice == scissors) {
            switch (aIChoice) {
            case 0:
                System.out.println("AI chose rock.");
                System.out.println("Fail. Rock trumps scissors.");
                break;
            case 1:
                System.out.println("AI chose paper.");
                System.out.println("You win! Scissors trumps paper.");
                break;
            case 2:
                System.out.println("AI chose scissors.");
                System.out.println("Scissors ties with scissors!");
                break;
            default:
                break;
            }
        } else {
            System.out.println("Nope!");
        }
        input.close();
    }

}

如上所述,如果我运行代码,并且键入任何字母(字符串),则会出现错误,引用第11行。我不确定应该怎么做,因为很显然,正如我已经提到的,在所有这些语句中添加一个else语句并不能确保它们输入字符串时不会出现“ nope”。

2 个答案:

答案 0 :(得分:0)

通常,您不接受字符串输入。如果由于某些原因确实需要这样做,可以将输入行替换为String choice = input.next(),然后进行任何需要的测试。确认为输入后,您要引用this post从字符串转换为整数。

答案 1 :(得分:0)

不太确定在用户提供无效输入的情况下您会期望什么,但是,我认为,如果输入不是有效的整数,则合理的选择是检查输入并向用户显示错误消息。为此,只需在下面而不是代码中添加以下代码即可:int choice = input.nextInt();

int choice = -1;
if (input.hasNextInt()) {
  choice = input.nextInt();
} else {
  System.out.println("Please provide valid integer input: Rock, Paper, or Scissors(0, 1, or 2)?");
}

P.S。另外,最好检查您的整数是否在[0,2]范围内。