# 求最大公约数 8 6 最大公约数是2 def fun_gongyue(p,q): temp = p%q # 2 while temp!=0: p = q # 6 q = temp # q = 2 temp = p%q # 0 return q print(fun_gongyue(6,8)) # 求最小公倍数 两数乘积 / 最大公约数 def fun_gongbei(p,q): gongyue = fun_gongyue(p,q) return(p*q// gongyue ) print(fun_gongbei(6,8))
标签:return,temp,公倍数,最小,gongyue,最大公约数,fun From: https://www.cnblogs.com/Avicii2018/p/17512809.html