Commit a0bf617e by BellCodeEditor

auto save

parent d223b699
Showing with 19 additions and 0 deletions
message = "诺依,周末一起去看动漫展吧!"
for i in message:
\ No newline at end of file
message = "诺依,周末一起去看动漫展吧!"
for i in message:
print(i)
\ No newline at end of file
def max_a(a,b):
if a < b:
a,b = b,a
return a if b ==0 else max_a(b, a%b)
a = int(input("a = "))
b = int(input("b = "))
print("a 和 b的最大公约数是:",max_a(a,b))
import random
key="信息加密好酷呀!"
str=random.choice(key)
print(str)
\ No newline at end of file
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