码迷,mamicode.com
首页 > 其他好文 > 详细

打印杨辉三角形

时间:2017-12-06 14:19:43      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:三角形   源码   pre   tps   UI   hub   nbsp   targe   返回   

题目:打印出杨辉三角形

1
1 1
1 2 1
1 3 3 1
1 4 6 4 1 

      /**
     * @param i  第几行
     * @param j  第几列
     * @return 返回指定坐标的值
     */
    public static int getNumByCod(int i,int j){
        if (i==0 || j==0 || i==j) {   //当第一行为1(上边界),第一列全为1(左边界),行等于列也为1(右边界)
            return 1;
        }else {   //其他的为上一行的两列之和
            return getNumByCod(i-1, j-1)+getNumByCod(i-1, j);
        }
    }

    public static void main(String[] args) {
        for (int i = 0; i < 10; i++) {
            for (int j = 0; j <= i; j++) {
                System.out.print(getNumByCod(i, j)+"   ");
            }
            System.out.println("");
        }
    }

源码

 

打印杨辉三角形

标签:三角形   源码   pre   tps   UI   hub   nbsp   targe   返回   

原文地址:http://www.cnblogs.com/aeolian/p/7992164.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!