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

杨辉三角

时间:2017-07-17 23:54:04      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:str   arp   i++   pre   rgs   class   new   static   log   

public class lianxi33 {
public static void main(String[] args) {
    int[][] a = new int[10][10];
   for(int i=0; i<10; i++) {
    a[i][i] = 1;
    a[i][0] = 1;
   }
   for(int i=2; i<10; i++) {
    for(int j=1; j<i; j++) {
     a[i][j] = a[i-1][j-1] + a[i-1][j];
    }
   }
     for(int i=0; i<10; i++) {
    for(int k=0; k<2*(10-i)-1; k++) {
     System.out.print(" ");
    }
    for(int j=0; j<=i; j++) {
     System.out.print(a[i][j] + "   ");
    }
    System.out.println();
   }
}
}

  

杨辉三角

标签:str   arp   i++   pre   rgs   class   new   static   log   

原文地址:http://www.cnblogs.com/adada/p/7197475.html

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