第19508题 填空题
执行给定C++代码后,数组a的元素按顺序(空格分隔)是什么?
int x=3,y=6;
int a[]={2,4,3,7,8,9,1,10},b[]={9,3,2,6,3,1,8,10,2,3};
for (int i=0;i<=y;i++) {
    if(a[i]%x) {
        a[i] = a[i+1];
    }
}

请填写执行上述代码后a数组的元素序列,元素之间用空格分隔。

{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析