标签:
5.从键盘上输入一个正整数n,请按照以下五行杨辉三角形的显示方式,
输出杨辉三角形的前n行。请采用循环控制语句来实现。
(三角形腰上的数为1,其他位置的数为其上一行相邻两个数之和。)
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
Scanner sc=new Scanner(System.in);
System.out.println("输入一个数打印杨辉三角:");
int t=sc.nextInt();
int[][] array = new int[t][t];
for(int i=0;i<array.length;i++)
{
for(int j=0;j<=i;j++){
if(j==0 || j==i){
array[i][j]=1;
}
else
{
array[i][j]=array[i-1][j-1]+array[i-1][j];
}
System.out.print(array[i][j]+" ");
}
System.out.println();
}
标签:
原文地址:http://www.cnblogs.com/tfl-511/p/5879261.html