Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

第6课最大公因数,最小公倍数有点小问题 #45

Open
heqiang233 opened this issue Feb 28, 2023 · 3 comments
Open

第6课最大公因数,最小公倍数有点小问题 #45

heqiang233 opened this issue Feb 28, 2023 · 3 comments

Comments

@heqiang233
Copy link

没有考虑x,y的大小,建议修改一下
x = int(input('x = '))
y = int(input('y = '))
if x > y:
x, y = y, x
for factor in range(x, 0, -1):
if x % factor == 0 and y % factor == 0:
print(f'{x}和{y}的最大公约数是{factor}')
print(f'{x}和{y}的最小公倍数是{x * y // factor}')
break

@hbjcstkl2020
Copy link

hbjcstkl2020 commented Feb 28, 2023 via email

@b11152
Copy link

b11152 commented Feb 28, 2023 via email

@CHAMPIOM1
Copy link

CHAMPIOM1 commented Feb 28, 2023 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants