找传奇、传世资源到传世资源站!

杨辉三角形(c#版)源码

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

from clipboard using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 杨辉三角形
{
    class Program
    {
        static void Main(string[] args)
        {
            int[][] Array_int = new int[10][];
            for(int i=0;i<Array_int.Length;i )
            {
                Array_int[i] = new int[i 1];
                for(int j=0;j<Array_int [i].Length;j )
                {
                    if(i<=1)
                    {
                        Array_int[i][j] = 1;
                        continue;
                    }
                    else
                    {
                        if (j == 0 || j == Array_int[i].Length - 1)
                            Array_int[i][j] = 1;
                        else
                            Array_int[i][j] = Array_int[i-1][j-1] Array_int[i-1][j];

                    }
                }
            }
            for(int i=0;i<Array_int.Length;i )
            {
                for (int j = 0; j < Array_int[i].Length; j )
                    Console.Write("{0}\t", Array_int[i][j]);
                Console.WriteLine();
            }
            Console.ReadLine();
        }
    }
}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复