• 2021-04-14
    请阅读下面的程序
    public class Test {
    public static void main(String[] args) {
    for(int x = 0 ; x <=3 ; x++){
    continue;
    System.out.print(x%2+” “);
    }
    }
    }
    下列选项中,哪一个是程序的运行结果