第23235题 单选题
C++代码填空:从1-35中筛选能被7整除的数字填入数组的横线代码选择

以下是完整的待填空C++代码(图片内容):

#include <iostream>
using namespace std;

int main() {
    int arr[35];
    int count = 0;
    for (int i = 1; i <= 35; i++) {
        if (i % 7 == 0)
            ________________ // 在此处填入代码
    }

    for (int i = 0; i < count; i++)
        cout << arr[i] << endl;

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