题解列表

筛选

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

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

P1002-题解(C++代码)

摘要:```cpp #include using namespace std; typedef struct Stu{ char name[20]; int qimo; ……