题解 1097: 蛇行矩阵

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

筛选

蛇行矩阵 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main() { int num; int a[102]; cin>>num;  ……

蛇行矩阵 (C语言代码)

摘要:解题思路:这题是基础题,有很多种解法,但本人偏爱数组,所以不在乎其它方法的简便性。注意事项:s[i-j][j]=k++;以及每个数字之间的见距,10是个分界点。参考代码:#include<stdio.……

蛇行矩阵 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { ……

蛇行矩阵 (C语言代码)

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

蛇行矩阵 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String arg……

蛇行矩阵 (C语言代码)

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

蛇行矩阵 (C语言代码)

摘要:解题思路:我是先将全部数据存储起来,比起其他大神作品low爆了注意事项:参考代码:#include<stdio.h> int C[100][100]; int main() { C[0][0……