题解列表

筛选

蛇行矩阵 (C语言代码)

摘要:参考代码:#include <stdio.h> int main() {     int n, array[100][100] = {{1}}, i, j;     while(scanf……