/*
杨晖三角
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
*/
import java.util.Scanner;
class YangHuiSanJiao{
public static void main(String[] args){
Scanner s = new Scanner(System.in);
System.out.println("请输入一个数字");
int n = s.nextInt();
int[][] arr = new int[n][n];
for(int x=0;x<n;x++){
arr[x][0]=1;
arr[x][x]=1;
}
for(int x=2;x<n;x++){
for(int y=1;y<n;y++){
arr[x][y]=arr[x-1][y-1]+arr[x-1][y];
}
}
for(int x=0;x<n;x++){
for(int y=0;y<=x;y++){
System.out.print(arr[x][y]+"\t");
}
System.out.println();
}
}
}
问题:
1.全程为什么n不是arr.length
2.for(int x=2;x<n;x++){
for(int y=1;y<n;y++){
arr[x][y]=arr[x-1][y-1]+arr[x-1][y];
X为什么是从2开始,2开始那就是从第二个数组啊
|
|