编写一个Python程序,实现从键盘上输入3个整数并将这3个数由小到大输出。

编写一个Python程序,实现从键盘上输入3个整数并将这3个数由小到大输出。

这是一个Python入门的简单程序,需要注意的是Python输入时默认的类型为str,需要转换为int类型进行操作。

a,b,c=map(int,input().split())
d=max(a,b,c)
e=min(a,b,c)
# print(e)
if a!=d and a!=e:
    print(e,a,d)
    
elif b!=d and b!=e:
    print(e,b,d)
    
elif c!=d and c!=e:
    print(e,c,d)

实现本题的思路是通过调用Python中的数学库,巧妙的将最大值和最小值找出来,通过条件判断输出来实现程序。

上一篇:C#中Predicate与Func泛型委托的用法实例


下一篇:Python实现简单的石头剪刀布小游戏