C#實現楊輝三角的樣本

來源:互聯網
上載者:User
這篇文章主要介紹了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();    }  }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.