You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
476 B
26 lines
476 B
# test builtin min and max functions with float args
|
|
|
|
print(min(0,1.0))
|
|
print(min(1.0,0))
|
|
print(min(0,-1.0))
|
|
print(min(-1.0,0))
|
|
|
|
print(max(0,1.0))
|
|
print(max(1.0,0))
|
|
print(max(0,-1.0))
|
|
print(max(-1.0,0))
|
|
|
|
print(min(1.5,-1.5))
|
|
print(min(-1.5,1.5))
|
|
|
|
print(max(1.5,-1.5))
|
|
print(max(-1.5,1.5))
|
|
|
|
print(min([1,2.9,4,0,-1,2]))
|
|
print(max([1,2.9,4,0,-1,2]))
|
|
|
|
print(min([1,2.9,4,6.5,-1,2]))
|
|
print(max([1,2.9,4,6.5,-1,2]))
|
|
print(min([1,2.9,4,-6.5,-1,2]))
|
|
print(max([1,2.9,4,-6.5,-1,2]))
|
|
|
|
|