71.執行以下Python程式片段,其結果為何?[商技113]
(A) 0
(B) 1
(C)2
(D)3
def calc(x):
if x == 0:
return 4
return calc(x -1)+4
print(calc(3) % 4)

答案:登入後查看
統計: 尚無統計資料