参考代码:
def fun_1(ls): # 输入10个数
ls = list(map(int, input().split()))
return ls
def fun_2(ls): # 进行处理
my_min = min(ls)
my_index = ls.index(my_min)
temp = ls[0]
ls[0] = ls[my_index]
ls[my_index] = temp
my_max = max(ls)
my_new_index = ls.index(my_max)
new_temp = ls[-1]
ls[-1] = ls[my_new_index]
ls[my_new_index] = new_temp
return ls
def fun_3(ls): # 输出10个数
for i in range(10):
print(ls[i], end=" ")
ls = []
rel = fun_1(ls)
new_rel = fun_2(rel)
fun_3(new_rel)
0.0分
0 人评分
多输入输出练习1 (C语言代码)浏览:1220 |
大小写转换 (C语言代码)浏览:904 |
C语言程序设计教程(第三版)课后习题5.7 (Java代码)浏览:910 |
众数问题 (C语言代码)浏览:911 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:268 |
IP判断 (C语言描述,蓝桥杯)浏览:1118 |
淘淘的名单 (C语言代码)浏览:1309 |
简单的a+b (C语言代码)浏览:857 |
简单的a+b (C语言代码)浏览:491 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:765 |