实验四---输出杨辉三角
一、输出等腰杨辉三角
public class yh{
public static void main(String args[])
{
int yh[]=new int[4],i;
for(i=0;i<4;i++)
{ yh[i]=1;
for(int j=i-1;j>0;j--)
yh[j]=yh[j-1]+yh[j];
for(int j=0;j<=i;j++)
System.out.print(yh[j]+"\n");
System.out.println();
}
}
结果: 1
1 1
1 2 1
1 3 3 1