问答题

判断输出结果
public class Demo {public static void main(String[] args) {for(int x=1;x<=3;x++ ){if(x==2){continue;}System.out.print(x);}}}

【参考答案】

13