实验四:用一维数组实现杨辉三角
Posted java199-lxf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验四:用一维数组实现杨辉三角相关的知识,希望对你有一定的参考价值。
源代码:
package yanghui;
public class sanjiao{
public static void main(String[]args){
int i=1;
int a[]=new int[8];
for(i=0;i<8;i++){
a[i]=1;
for(int j=i-1;j>0;j--){
a[j]=a[j-1]+a[j];
}
for(int j=0;j<=i;j++)
{
System.out.print(" "+a[j]);
}
System.out.print("\n");
}
}
}
结果:
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
1 7 21 35 35 21 7 1
心得:
1.了解到了数组在java中的定义及使用
2.在运行时出现错误不能及时更改,调试程序能力需加强。
以上是关于实验四:用一维数组实现杨辉三角的主要内容,如果未能解决你的问题,请参考以下文章