其他分享
首页 > 其他分享> > 二维数组打出杨辉三角

二维数组打出杨辉三角

作者:互联网

代码如下

 1 public class YangHui{
 2     //主方法
 3     public static  void main(String[] args){
 4         int k = 15;        //二维数组的个数
 5         int[][] arr = new int[k][];        //其中k代表二维数组个数
 6         for(int i = 0;i < arr.length; i++)    //遍历二维数组个数
 7         {
 8             arr[i] = new int[i + 1];        //给每个一维数组开空间
 9             for(int j = 0; j < arr[i].length;j++)  //遍历每个一维数组
10             {
11                 if(j == 0 || j == arr[i].length - 1)     //因为杨辉三角的每行的第一个和最后一个数字是1
12                 {
13                     arr[i][j] = 1;
14                 }
15                 else                                   //杨辉三角的另一个规则中间的数等于该数上面的数字和它左边的数字和
16                 {
17                     arr[i][j] = arr[i - 1][j] + arr[i - 1][j - 1];
18 
19                 }
20 
21             }
22 
23 
24 
25         }
26         for(int i = 0;i < arr.length; i++)      //就是遍历二维数组
27         {
28             for(int j = 0; j < arr[i].length;j++) //编列二维数组中一维数组的元素
29             {
30                 System.out.print(arr[i][j] + " ");    //输出
31             }
32             System.out.println(); //每行的换行
33         }
34 
35     }
36 }

15行的演示结果如下

 

标签:arr,int,length,++,二维,数组,杨辉三角
来源: https://www.cnblogs.com/yangyu250/p/15973020.html