`

杨辉三角

阅读更多
/** 
 * 
 * 
 * 杨辉三角要求:实现10 行杨辉三角元素的存储以及输出。
 * 杨辉三角是数学上的一个数字序列,该数字序列如下:
 * 1
 * 1 1
 * 1 2 1
 * 1 3 3 1
 * 1 4 6 4 1
 * @author 够潮
 *
 */
public class Demo10 {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		int[][] arr = new int[10][10];
		//循环赋值
		for(int row = 0;row < arr.length;row++){
		
			for(int col = 0;col <= row;col++){
				if(col == 0){ //第一列
					arr[row][col] = 1; 
				}
				else{
					arr[row][col] =arr[row - 1][col] + arr[row - 1][col - 1];
					}
				}
			}
		
		//输出数组的值
		for(int row = 0;row < arr.length;row++){
			for(int col = 0;col <= row;col++){
				System.out.print(arr[row][col] +"   ");
				//System.out.print('    ');
			}
			System.out.println();
		}
		
	}
	
}

 

0
5
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics