码迷,mamicode.com
首页 > 编程语言 > 详细

java--杨辉三角

时间:2017-09-08 01:26:38      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:[]   main   sys   out   class   string   package   div   规律   


package test111111; public class Test11 { public static void main(String[] args){ printYanghui(); } //先总结一般规律,再讨论特殊情况,再做图形调整 public static void printYanghui() { int rowMax = 6; int[][] arr = new int[rowMax][rowMax]; for(int row=0;row<rowMax;row++) { for(int k=0;k<rowMax-row;k++) { System.out.print(" "); } for(int col=0;col<=row;col++) { if(col==row||col==0||row==0) { //特殊情况 arr[row][col] = 1; }else { arr[row][col] = arr[row-1][col-1]+arr[row-1][col]; //一般规律 } System.out.print(arr[row][col]+" "); } System.out.println(""); } for(int row=0;row<rowMax;row++) { for(int col=0;col<rowMax;col++) { System.out.print(arr[row][col]+" "); } System.out.println(""); } } }

    1
     1 1
    1 2 1
   1 3 3 1
  1 4 6 4 1
 1 5 10 10 5 1

java--杨辉三角

标签:[]   main   sys   out   class   string   package   div   规律   

原文地址:http://www.cnblogs.com/plant/p/7492533.html

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