题解 1097: 蛇行矩阵

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

蛇行矩阵 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,flag=1; while(flag){ scanf("%d",&N); if(N<=100&&N>……

蛇行矩阵 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int now=1,n,i=0,j=0;     int a[100][100];     scanf(……

蛇形矩阵,找规律输出

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){         int n;         scanf("%d",&n);         int temp=……

蛇行矩阵 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main( ){ int a, s, e, r, t,y,u,i,p; scanf("%d", &a); for (s=1,u……

蛇行矩阵 (C语言代码)

摘要:解题思路:定义数组a[i][j]; i=0     1  3  6  10  15   第一行第一列为a[0][0]  i=1     2  5  9  14