Commit d27e5527 by BellCodeEditor

auto save

parent 72ae7d76
Showing with 25 additions and 4 deletions
...@@ -11,3 +11,13 @@ ...@@ -11,3 +11,13 @@
刘阳 11 15 22 11 23 26 22 15 17 52 12 刘阳 11 15 22 11 23 26 22 15 17 52 12
王胜男 27 15 15 26 13 12 15 王胜男 27 15 15 26 13 12 15
王娇 12 11 12 12 15 35 23 11 王娇 12 11 12 12 15 35 23 11
a=float(input(""))
if a>=1.5:
print(120)
else:
if a>=1.2:
print(120/2)
else:
print(0)
import math import math
a=int(input('请输入一个整负数')) a=int(input('请输入一个整负数'))
print(math.fabs(a)) print(math.fabs(a))
a=float(input(""))
if a>=1.5:
print(120)
else:
if a>=1.2:
print(120/2)
else:
print(0)
a=[18,17,14,46,98] # a=[18,17,-14,-46,98]
a=[18,17,14,46,98] # a=[18,17,-14,-46,98]
print(max(a)) # print(min(a))
\ No newline at end of file # print(round(12.1234))
a=int(input(""))
print(sum([a]))
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