無法跳出while循環。我的代碼有什麼問題? 一切看起來正確的邏輯我:Java - 無法跳出循環
雖然(而不是 's' 或不是 'P') ---打印線: 「重新」 --- ReadInput:
while (!answerInput.equals("s") || !answerInput.equals("p"))
{
System.out.print("Wrong Input. Type S for Sum or P for Product: ");
answerInput = userInput.next();
answerInput = answerInput.toLowerCase();
}
請指教。
如果你會說*當(不是 's' 或 'P')*你的錯誤是可以理解的。但是,如何(而不是'或'不'')有什麼意義? – shmosel