Commit a14703c0 by Administrator

Add new file

parents
Showing with 10 additions and 0 deletions
a=11
b=20
#算术运算符
print('输出a+b的结果', a+b)
print("输出a*b的结果", a*b)
print('输出a除b的结果', b/a)
print('输出b/a取模/取余', b%a)
print('返回b的a次幂', b**a)
print('取b/a的整除', b//a)
\ 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