1. 程式人生 > >把輸入的三個數從小到大排列

把輸入的三個數從小到大排列

把輸入的三個數從小到大排列

x=input(‘x=:‘)
y=input(‘y=:‘)
z=input(‘z=:‘)
t=0
if(x>y):
    t=x
    x=y
    y=t
if(x>z):
    t = x
    x = z
    z = t
if(y>z):
    t = y
    y = z
    z = t
print (x,y,z)


本文出自 “IT技術” 博客,轉載請與作者聯系!

把輸入的三個數從小到大排列