当前位置:   article > 正文

二维数组横竖倾斜遍历

二维数组 横竖 斜线
/**
程序名称:二维数组横竖倾斜遍历
*/
class array8 
{
    public static void main(String[] args) 
    {
        int[][] a = new int[9][9];
        for(int i = 0; i < 9; i++)
        {
            for(int j = 0; j < 9; j++)
            {
                a[i][j] = i;
            }
        }

        for(int i = 0; i < 9; i++)
        {
            for(int j = 0; j < 9; j++)
            {
                System.out.print(a[i][j]);
            }
            System.out.println();
        }


    

        for(int i = 0; i < 17; i++)
        {
            for(int j = 0; j < 9; j++)
            {
                if(((i - j) >= 0)&&((i - j) < 9))
                {
                    System.out.print(a[j][i-j]+" ");
                }
            }
            System.out.println();
        }
        System.out.println("****************************");

        for(int i = -8; i < 9; i++)
        {
            for(int j = 0; j < 9; j++)
            {
                if(((i + j) >= 0)&&((i + j)< 9))
                {
                    System.out.print(a[j][i+j]+" ");
                }
                
            }
            System.out.println();
        }
    }
}

/**
*输出结果:
000000000
111111111
222222222
333333333
444444444
555555555
666666666
777777777
888888888
0
0 1
0 1 2
0 1 2 3
0 1 2 3 4
0 1 2 3 4 5
0 1 2 3 4 5 6
0 1 2 3 4 5 6 7
0 1 2 3 4 5 6 7 8
1 2 3 4 5 6 7 8
2 3 4 5 6 7 8
3 4 5 6 7 8
4 5 6 7 8
5 6 7 8
6 7 8
7 8
8
***********************
8
7 8
6 7 8
5 6 7 8
4 5 6 7 8
3 4 5 6 7 8
2 3 4 5 6 7 8
1 2 3 4 5 6 7 8
0 1 2 3 4 5 6 7 8
0 1 2 3 4 5 6 7
0 1 2 3 4 5 6
0 1 2 3 4 5
0 1 2 3 4
0 1 2 3
0 1 2
0 1
0
请按任意键继续. . .




*/

 

转载于:https://www.cnblogs.com/flay/p/3321653.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/201722
推荐阅读
相关标签
  

闽ICP备14008679号