System.out.println("Enter Y/N for yes or no respectively if you wish for these features");
System.out.print("Central vacuum: ");
check1 = sc.nextBoolean();
如果Y = true且N = false,是否可以使它
答案 0 :(得分:3)
不,这是不可能的。
但是,您只需通过char
阅读Scanner
,并将其与预期输入('Y'
,'N'
)进行比较。使用if
或switch