[Java] 纯文本查看 复制代码 public class YangHui {
public static void main(String[] args) {
// TODO Auto-generated method stub
int n = 6;
int[][]arr=new int[n][n];
for(int x=0;x<arr.length;x++){
arr[x][0]=1;
arr[x][x]=1;
}
for(int x=2;x<arr.length;x++){
for(int y=1;y<=x-1;y++){
arr[x][y]=arr[x-1][y-1]+arr[x-1][y];
System.out.print(arr[x][y]+"\t");
}
System.out.println();
}
}
}
提问:为什么输出结果是这样的,没有定义的第一行和最后一行数据为1。
2
3 3
4 6 4
5 10 10 5 |