2014-02-24 50 views
-3

如何輸入整數「-1」時結束此輸入。JAVA:如何結束輸入整數「-1」

if(op.contains("SENTINEL")){ 
while(!sc.next.equals("-1")){ 
String action = sc.next();           
int a= sc.nextInt(); 
int b= sc.nextInt(); 
int ans=countAns(action, a, b); 
System.out.println(+ans); 
}} 
+0

'break'將這樣做 – Nambi

+0

在while條件或a或b中哪個變量的整數輸入? –

+0

字符串操作的整數輸入。因此,如果我輸入-1作爲字符串變量動作,while循環將會中斷。 – user3345791

回答

1

這個循環會結束,當你進入-1不需要任何

,但你有語法錯誤在這一部分:!sc.next.equals("-1"),它應該是這樣寫!sc.next().equals("-1")

相關問題