Java循環(huán)跳轉(zhuǎn)語(yǔ)句之 break
package Hello;
public class MyName{
?public static void main(String[] args){
??for(int i=1; i<=10; i++);
??if((i > 2) && (i % 3 == 0)){
??break;?
?Multiple markers at this line
?- a cannot be resolved to a
? variable
?- a cannot be resolved to a
? variable個(gè)標(biāo)記
——一個(gè)無(wú)法解決的
變量
——一個(gè)無(wú)法解決的
變量
出錯(cuò)了,這么顯示的
2016-12-22
你for循環(huán)的括號(hào)呢?
2016-12-22
for(int i=1; i<=10; i++); { if((i > 2) && (i % 3 == 0)){
??break; }
2016-12-22
應(yīng)該是少了這個(gè)System.out.println();?