Commit 7bc59975 by BellCodeEditor

save project

parent 3e2cc2dc
Showing with 12 additions and 0 deletions
...@@ -7,3 +7,14 @@ input_food = input_food("今晚要吃什么:") ...@@ -7,3 +7,14 @@ input_food = input_food("今晚要吃什么:")
print("今晚我要吃-",input_food) print("今晚我要吃-",input_food)
""" """
print("black") print("black")
x=21
y=8
# 加运算
print("x+y=",x+y)
# 减运算
print("x-y=",x-y)
# 乘运算
print("x*y=",x*y)
# 除运算
print("x/y=",x/y)
\ 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