第23141题 单选题
补全C++实现十进制转八进制函数的空缺代码

下列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 }}%
答案解析