第20117题 单选题
C++实现十进制转八进制的代码空缺处应填入以下哪项?
#include <iostream>
using namespace std;

void decimal2octal(int decimal) {
    int oct_number[100];
    int i = 0;

    while (decimal > 0) {
        __________________________ //在此处填入代码

    }

    for (int j = i - 1; j >= 0; j--) {
        cout << oct_number[j];
    }
    cout << endl;
}
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析