根据边数打印杨辉三角

/**
 * 问题:根据边数打印杨辉三角
 * 思路:将边数分为1,2,大于2三种情况分别处理,返回二维数组
 * bug:1.第三次设置数组第一维长度时设置成了2,应为n
 *      2.打印数组时,只写了二维数组的一维
 */

import java.util.Scanner;

public class Test15 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.print("请输入杨辉三角的边数:");
        int n = sc.nextInt();
        print(pascalTiangle(n));
    }
    public static int[][] pascalTiangle(int n) {
        int[][] result;
        if(n == 1) {
            result = new int[][]{{1}};
            return result;
        }
        if(n == 2) {
            result = new int[][]{{1},{1,1}};
            return result;
        }
        //当n>=3时的初始化
        result = new int[n][];
        result[0] = new int[]{1};
        result[1] = new int[]{1,1};
        for(int i = 2; i < n; i++) {
            result[i] = new int[i+1];
            result[i][0] = 1; //一行的第一个元素为1
            result[i][i] = 1; //一行的最后一个元素是1
            //i和j位置上的元素的值为i
            for(int j = 1; j < i; j++)
                result[i][j] = result[i - 1][j] +result[i - 1][j-1];
        }
        return result;
    }
    public static void print(int[][] str) {
        for(int i = 0; i < str.length; i++) {
            for(int j = 0; j < str[i].length; j++) {
                System.out.print(str[i][j]+" ");
            }
            System.out.println();
        }
    }
}

运行结果

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值