這篇文章主要介紹了C# 中楊輝三角的實現的相關資料,希望透過本文大家能掌握這部分內容,需要的朋友可以參考下
C# 中楊輝三角的實現
問題描述:建立一個程式來求三角形。此程式提示使用者輸入數據,然後顯示出楊輝三角的規律。
// 輸入描述:楊輝三角長,代表數值
// 程序輸出:楊輝三角
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { 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列的元素都赋1 a[j][j] = 1; //把每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(); } } }
以上是C#實現楊輝三角的範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!