题解列表

筛选

[编程入门]求和训练-题解(C语言代码)

摘要:解题思路:运用for循环来处理,通过三个循环来求得预期结果。注意事项:第三个for循环为1.0/i;否则答案会有问题参考代码:#include"stdio.h"#include"math.h"int ……

矩阵-题解(Python代码)

摘要:解题思路:注意事项:参考代码:   def move(row: int):  # 移动函数,通过pop弹出最后一个元素,和insert插入到最前面实现    key = list1[row].pop(……