麻烦帮忙看下
[AppleScript] 纯文本查看 复制代码
public class MyClass {
public static void main(String[] args) {
// TODO 自动生成的方法存根
int i;
int j;
outer:for(i=1;i<3;i++)
inner:for(j=1;j<3;j++)
{
if(j==2)
continue outer;
System.out.println("Value of i is" +i+" Value of j is"+j);
}
}
}
|