题解 1065: 二级C语言-最小绝对值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

二级C语言-最小绝对值-题解(Python代码)

摘要:这道题n来获取输入的十个值 存放在列表中 给a随便定义一个值 然后遍历一遍 找到绝对值最小的数 通过index()找到索引位置 然后和最后一个值的索引位置 交换位置 ```python ……

有注释,思路简单

摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))    输入的列表 b=[]     绝对值列表                      &nb

python 最小绝对值问题

摘要:解题思路:注意事项:遍历从a[0]开始参考代码:a=list(map(int,input().split()))t=a[0]c=0for i in range(len(a)):    if abs(t……

不算简单,要认真做

摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))   b=list(map(abs,a))c=min(b)for i in range(len(a)): ……

6行代码解决

摘要:解题思路:注意事项:参考代码:import sysmas=list(input().split())mas1=[abs(int(i))for i in mas]x=mas1.index(min(mas……

题解 1065: 二级C语言-最小绝对值

摘要:解题思路:函数 min 获得最小值列表方法 index 获得下标两位置值交换即可注意事项:务必注意,是在原始输入的10个数中调换位置错了4遍才看出来参考代码:arr = list(map(int,in……