第19283题 单选题
请找出下列求正整数镜面数的C++代码中while循环条件的错误选项
cout << "请输入个位数不为0的正整数:";cin >> N;rst = 0; // 保存逆序结果
while (______________)
{    rst = rst * 10 + N % 10;
    N = N / 10;
}
cout << rst << endl;
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析