求最大公约数&最小公倍数
摘要:
#求最大公约数def hcf(x,y): if x>y: s = y else: s=y for i in range(1,s+1): if y%i ==0 and x %i ==0: hcf =i return hcf x = int(input("输入一个数: ")) y = int(input 阅读全文
posted @ 2019-12-28 18:01 libra-gyf 阅读(142) 评论(0) 推荐(0) 编辑