题解列表

筛选

蛇行矩阵Python解题

摘要:解题思路:双重for循环注意事项:注意m的计算方式参考代码:while True:    n=int(input())    for i in range(n):        m = int((i+……