第26774题 单选题
使用给定的辗转相除法(欧几里得算法)求gcd(84, 60),第二次调用gcd()函数的参数是以下哪一项

用以下辗转相除法(欧几里得算法)求gcd(84, 60)的步骤中,第二次调用gcd()函数计算的数是( )。

def gcd(a, b):
    big = max(a, b)
    small = min(a, b)
    if big % small == 0:
        return small
    return gcd(small, big % small)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析