这是一个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中的数学库,巧妙的将最大值和最小值找出来,通过条件判断输出来实现程序。