Commit fd1845ed by BellCodeEditor

auto save

parent c0e10f96
Showing with 15 additions and 12 deletions
# 利用write()帮助悟空给诺依回信吧~ # 利用write()帮助悟空给诺依回信吧~
import turtle a = input()
pen1=turtle.Pen() b = input()
pen1.left(45)
pen1.forward(100) print('*'*6,'J吧及玄己','*'*6)
pen1.circle(50,180) print('数字A:',a)
pen1.right(90) print('数字B:',b)
pen1.circle(50,180) c = int(a) + int(b)
pen1.forward(100) print(a,'+',b,'=',c)
pen1.pensize(5) c = int(a) - int(b)
pen1.pencolor("red") print(a,'-',b,'=',c)
turtle.done() c = int(a) * int(b)
\ No newline at end of file print(a,'*',b,'=',c)
c = int(a) / int(b)
print(a,'/',b,'=',c)
print('*'*3,'JB别看莉,没有了!','*'*3)
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