从键盘输入三个整数a、b、c,要求将输出的数据按从大到小排序后输出。
时间: 2023-04-24 18:01:38 浏览: 104
python 输入3个数a,b,c,按大小顺序输出(示例)
可以使用以下代码实现:
a = int(input("请输入第一个整数:"))
b = int(input("请输入第二个整数:"))
c = int(input("请输入第三个整数:"))
if a >= b and a >= c:
if b >= c:
print(a, b, c)
else:
print(a, c, b)
elif b >= a and b >= c:
if a >= c:
print(b, a, c)
else:
print(b, c, a)
else:
if a >= b:
print(c, a, b)
else:
print(c, b, a)
这段代码首先从键盘输入三个整数a、b、c,然后使用if语句进行判断,将它们按从大到小的顺序输出。如果a最大,就判断b和c的大小关系,然后输出a、b、c或a、c、b;如果b最大,就判断a和c的大小关系,然后输出b、a、c或b、c、a;如果c最大,就判断a和b的大小关系,然后输出c、a、b或c、b、a。
阅读全文