13. 寫出程式執行結果
a=21
b=99
if b>a:
a,b=b,a #交換
r=a % b
while r>0:
a=b
b=r
r=a%b
print(b)#3
(A)0
(B)1
(C)2
(D)3
答案:登入後查看
統計: A(7), B(5), C(2), D(27), E(0) #3746309
統計: A(7), B(5), C(2), D(27), E(0) #3746309