题解列表

筛选

汽水瓶-题解(Python代码)

摘要:解题思路:注意事项:参考代码:while(1):    n=int(input())    if n==0:        break    else:        a=int(n/2)    pr……

蛇行矩阵-题解(C语言代码)

摘要:解题思路: 第i行第j列上的数与i和j的关系注意事项:每一行最后一个元素后不能有空格参考代码:#include <stdio.h>#include <stdlib.h>#define N 20int ……