高普考題庫
111 年 111年公務人員高等考試三級考試暨普通考試・計算機概要
29執行下列的Python程式,產生的輸出為何?def gg (x):if (x == 0):return 0else:return x + gg(x-1)print(gg(4))