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

杨辉三角

时间:2017-03-26 21:09:04      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:建立   str   pack   数字   package   new   ++   等于   杨辉三角   

package 佐翼;

public class ZY {
 public static void main(String[] args){
  int a[][] =new int[10][10];   //建立数组
  for(int i=0;i<10;i++)
  {
   for(int j=0;j<=i;j++)
   {
    if(i==j||j==0)   //两条斜边上的数字都是1
     a[i][j]=1;
    else
     a[i][j]=a[i-1][j-1]+a[i-1][j];   //a[i][j]等于它肩上的两数相加
    System.out.print(a[i][j]+"");
    if(i==j)
     System.out.print("\n");
   }
    
  }
  
 }

}

杨辉三角

标签:建立   str   pack   数字   package   new   ++   等于   杨辉三角   

原文地址:http://www.cnblogs.com/houjinming/p/6624006.html

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