print("请输入3个数:")
x=int(input("x="))
y=int(input("y="))
z=int(input("z="))
temp=0
if x>y:
temp=y
y=x
x=temp
if x>z:
temp=z
z=x
if y>z:
z=y
y=temp
print("这3个数新序列是:",x,y,z)
微信扫码预览、分享更方便