第17138题 判断
判断给定Python代码的运行结果是否为3
def add(a, b, c=0):
    return a+b+c
print(add(1, 2, 4))
A

正确

B

错误