C#輸出楊輝三角形

程序不復雜,直接上代碼了:數組

    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 k = 0; k < length -i;k++)
                    Console.Write(" ");
                for (int j = 0; j < a[i].Length; j++)
                    Console.Write("{0} ", a[i][j]);
                Console.Write("\n");
            }
            Console.Read();
        }
    }

運行效果以下:spa

相關文章
相關標籤/搜索