始于足下


私信TA

用户名:CZP

访问量:885

签 名:

等  级
排  名 20368
经  验 696
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校 五邑大学
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

# 输入10个整数,将其中最小的数与第一个数对换,把最大的数与最后一个数对换。写三个函数;

#  ①输入10个数;②进行处理;③输出10个数。

def a():

    a = input()

    temp = list(map(int,a.split()))

    return temp


def b(temp):

    a = min(temp)

    b = max(temp)

    for i in range(len(temp)):

        if a==temp[i]:

            temp[i] = temp[0]

        if b==temp[i]:

            temp[i] = temp[9]

           

    temp[0] = a

    temp[9] = b

    return temp

def c(temp):

    for i in temp:

        print(i,end=" ")


temp = a()

te = b(temp)

c(te)



 

0.0分

1 人评分

  评论区

  • «
  • »