Commit 60b71a3b by BellCodeEditor

auto save

parent dff40a22
Showing with 17 additions and 23 deletions
...@@ -33,29 +33,23 @@ IF K>CIF K ...@@ -33,29 +33,23 @@ IF K>CIF K
a=int(input("a"))
b=int(input("b"))
s=a*b
while a%b=0
a,b=b,(a%b)
else:
print(b)
print(s\\b)
a=int(input("数a"))
b=int(input("数b"))
s=a*b
while a%b!=0:
a,b=b,(a%b)
else:
print(b)
print(s\\b)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment