2、输入4个整数,要求按由小到大顺序输出。 得到正确结果后,修改程序使之按由大到小顺序输出
时间: 2023-05-24 19:05:25 浏览: 204
C语言实验-输入4个整数,要求按由小到大(或由大到小)顺序输出。
5星 · 资源好评率100%
按由小到大顺序输出的程序:
```python
a1, a2, a3, a4 = map(int, input().split())
nums = [a1, a2, a3, a4]
nums.sort()
for num in nums:
print(num, end=" ")
```
按由大到小顺序输出的程序:
```python
a1, a2, a3, a4 = map(int, input().split())
nums = [a1, a2, a3, a4]
nums.sort(reverse=True)
for num in nums:
print(num, end=" ")
```
阅读全文