Commit 98e66a21 by BellCodeEditor

save project

parent 3e3fd664
Showing with 6 additions and 6 deletions
a=input("请输入A")
a=int(input("被除数"))
a=input("请输入A")
b=input("请输入B")
c=input("请输入C")
print(int(a)+int(b)*int(c))
\ No newline at end of file
a=int(input("被除数"))
b=int(input("除数"))
c=a%b
d=int((a-c)/b)
print(a,"÷",b,"=",d,"余数",c)
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