public static int num(int x, int y) { if (y == 1 || y == x) { return 1; } int c = num(x - 1, y - 1) + num(x - 1, y); return c; }(2) 创建名称为 calculate 的方法,在该方法中传入一个 int 类型的参数,该参数表示打印杨辉三角形的行数。代码如下:
public static void calculate(int row) { for (int i = 1; i <= row; i++) { for (int j = 1; j <= row - i; j++) { System.out.print(" "); } for (int j = 1; j <= i; j++) { // 打印空格后面的字符, 从第1 列开始往后打印 System.out.print(num(i, j) + " "); } System.out.println(); } }(3) 在 main() 方法中添加代码,首先接收用户在控制台输入的打印行数,然后将行数作为参数传入到调用的 calculate() 方法中。代码如下:
public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.print("打印杨辉三角形的行数:"); int row = scan.nextInt(); calculate(row); }(4) 运行代码进行测试,其运行结果如下所示:
打印杨辉三角形的行数:7 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 1 6 15 20 15 6 1
本文链接:http://task.lmcjl.com/news/10164.html