杨辉三角

Posted 马蓉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了杨辉三角相关的知识,希望对你有一定的参考价值。

package 杨辉三角;
public class 杨辉三角  {
    public static void main(String[] args)
    {
      int m[][]=new int[8][];
      for(int i=0;i<m.length;i++)
      {
          m[i]=new int[i+1];
      
      for(int j=0;j<=i;j++)
      {
          if(i==0||j==0||i==j)
          {
              m[i][j]=1;
          }
          else
          {
              m[i][j]=m[i-1][j]+m[i-1][j-1];
          }
          System.out.print(m[i][j]+"\t");
      }
      System.out.println();
      }
      
    }
    

}

运行结果:

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    

以上是关于杨辉三角的主要内容,如果未能解决你的问题,请参考以下文章

c++编写程序输出五行的杨辉三角

杨辉三角的规律公式 怎么算杨辉三角中第m行第n项的数字?求手算公式,手算!

怎样用java打印杨辉三角,自己输入行

java的杨辉三角问题

用队列知识怎么实现输出杨辉三角?

C语言,杨辉三角公式