输入10个整数,用程序编程将其中最大数与最小数位置互换
时间: 2024-03-13 22:43:31 浏览: 63
输入10个数 求最大最小 以及他们的位置
好的,以下是Python的代码实现:
```python
numbers = input("请输入10个整数(用空格分隔):").split()
numbers = [int(num) for num in numbers] # 将输入的字符串转换为整数列表
max_index = numbers.index(max(numbers)) # 找到最大数的索引
min_index = numbers.index(min(numbers)) # 找到最小数的索引
# 交换最大数和最小数的位置
numbers[max_index], numbers[min_index] = numbers[min_index], numbers[max_index]
print("交换后的列表:", numbers)
```
输入示例:
```
请输入10个整数(用空格分隔):1 2 3 4 5 6 7 8 9 10
```
输出示例:
```
交换后的列表: [10, 2, 3, 4, 5, 6, 7, 8, 9, 1]
```
阅读全文