1: int w=0; outer: for(int i=0;i<5;i++){ for(int j=0;j<100;j++){ if(i==3) break outer; w++; } } System.out.println("w="+w);输出结果:???谢谢大家了