码迷,mamicode.com
首页 > 其他好文 > 详细

杨辉三角

时间:2018-04-01 13:11:39      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:pack   print   sys   int   oid   gpo   ack   结果   for   

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    

杨辉三角

标签:pack   print   sys   int   oid   gpo   ack   结果   for   

原文地址:https://www.cnblogs.com/maxue/p/8686144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!