用java设计一个函数def triangle(n):,输出n行杨辉三角形 将下面的完整代码写在答题框内(注释可以省略) import numpy as np # 是否使用numpy模块均可 def triangle(n): # 补充函数代码
时间: 2024-03-29 12:37:12 浏览: 59
import java.util.Scanner;
public class YangHuiTriangle {
public static void triangle(int n) {
int[][] res = new int[n][n]; // 创建一个n*n的二维数组并初始化为0
for (int i = 0; i < n; i++) {
res[i][0] = 1; // 每一行的第一个数字都是1
for (int j = 1; j <= i; j++) {
res[i][j] = res[i-1][j] + res[i-1][j-1]; // 计算杨辉三角形中其他数字
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j <= i; j++) {
System.out.print(res[i][j] + " "); // 输出杨辉三角形中的数字
}
System.out.println(); // 换行输出
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("请输入要输出的行数:");
int n = sc.nextInt();
triangle(n);
}
}
// 示例输出:
// 请输入要输出的行数:5
// 1
// 1 1
// 1 2 1
// 1 3 3 1
// 1 4 6 4 1
阅读全文