话说是不是这个意思:- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace 杨辉三角形
- {
- class Program
- {
- static void Main(string[] args)
- {
- int length = 0;//三角形的长度
- Console.Write("输入杨辉三角长度:");
- length = Convert.ToInt32(Console.ReadLine());
- int[][] a = new int[length][];//二维数组
- //遍历赋值增量
- for (int i = 0; i < a.Length; i++)
- {
- a[i] = new int[i + 1];
- }
- for (int j = 0; j < a.Length; j++)
- {
- a[j][0] = 1; //第1列的元素赋值
- a[j][j] = 1; //每1列最右边元素赋值
- for (int m = 1; m < a[j].Length - 1; m++)
- a[j][m] = a[j - 1][m - 1] + a[j - 1][m];//其余元素的值由杨辉公式计算
- }
- for (int i = 0; i < a.Length; i++) //遍历数组输出三角形
- {
- for (int j = 0; j < a[i].Length; j++)
- Console.Write("{0}\t", a[i][j]);
- Console.Write("\n");
- }
- Console.Read();
-
- }
- }
- }
复制代码 |