第35383题 单选题
下面C++代码用于判断N是否为质数(只能被1和它本身整除的正整数)。程序执行后,下面有关描述正确的是( )。
int N;
cout << "请输入整数:";
cin >> N;

bool Flag = false;

if (N >= 2) {
    Flag = true;
    for (int i = 2; i < N; i++)
        if (N % i == 0) {
            Flag = false;
            break;
        }
}

if (Flag)
    cout << "是质数";
else
    cout << "不是质数";
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
知识点:
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析