编写程序,从键盘输入3个整数,对这3个整数按由大到小排序,并输出。
时间: 2023-05-19 20:07:03 浏览: 83
C语言实验-有3个整数a,b,c,由键盘输入,编写程序输出其中绝对值最大(或最小)的数。
5星 · 资源好评率100%
以下是一个示例程序,可以实现从键盘输入3个整数,对这3个整数按由大到小排序,并输出:
```python
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)
```
这个程序首先从键盘输入3个整数,然后使用 if 语句对这3个整数进行排序,并输出排序后的结果。
阅读全文