第 12 屆 iThome 鐵人賽
分享至
使用python取得最大公因數。
#使用遞廻方式 #定義一個function def gcd(a,b): if(b==0): return a else: return gcd(b,a%b) a = 220 b= 284 print ("The gcd of 220 and 284 is : ",end="") print (gcd(220,284))
IT邦幫忙