第23428题 单选题
以下采用递推算法实现整数阶乘的C++代码中,横线处应填写的内容是?

整数阶乘的定义为:n! = n × (n-1) × ... × 2 × 1,现有如下C++实现代码:

int factorial(int n) {
    int result = 1;
    for (int i = 2; i <= n; i++) {
        _________________________ // 在此处填入代码
    }
    return result;
}
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析