Java else if和scanner

时间:2017-10-15 10:40:18

标签: java

我是Java新手,更熟悉c ++

1- Option one
2- Option two

应该是什么样的:

选择选项:

You select option one.

//用户类型1:

You select option two.

//用户类型2:

Please select option one or two by typing 1 or 2.

//用户输入任何其他内容

{{1}}

我如何用java代码做到这一点。

1 个答案:

答案 0 :(得分:0)

==声明不正确之后,您应该使用=表示不使用;if

您可以在编辑后看到代码:

    import java.util.Scanner; 
    class Test{ 
    public static void main(String args[]){
    Scanner sc=new Scanner(System.in); 
     System.out.println("Pick option:\n 1-Option one\n 2-Option two :");
     int x= sc.nextInt();
    if (x==1)
    {
    System.out.println("You select option one");
    }
    else if(x==2){
            System.out.println("You select option two");
    }
    else{
    System.out.println("Please select option one or two by typing 1 or 2");
}                 

    } 
    }