java--楊輝三角
阿新 • • 發佈:2017-09-08
else || 特殊情況 logs int stat true arr 圖形
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--楊輝三角