我是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代码做到这一点。
答案 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");
}
}
}