• 2022-05-28
    下面的代码段的输出结果是什么?for(inti=0;i<10;i++) {System.out.print(i+ " ");if((i%2)==0) continue;System.out.println(); }