-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);
}}
'break'將這樣做 – Nambi
在while條件或a或b中哪個變量的整數輸入? –
字符串操作的整數輸入。因此,如果我輸入-1作爲字符串變量動作,while循環將會中斷。 – user3345791