码迷,mamicode.com
首页 > 其他好文 > 详细

杨辉三角

时间:2014-11-23 14:33:22      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   for   on   2014   log   

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

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {

            int[,] number = new int[11, 11];

            for (int i = 0; i < number.GetLength(0); i++)
            {

                    for (int j = 0; j < number.GetLength(1); j++)
                    {

                        if (i == j || j == 0) number[i, j] = 1;
                        else if (i != 0) number[i, j] = number[i - 1, j - 1] + number[i - 1, j];
                        else number[i, j] = 0;

                }
            }

            for (int i = 0; i < number.GetLength(0); i++)
            {
                for (int j = 0; j < number.GetLength(1); j++)
                {
                    
                 Console.Write("{0} ", number[i, j]);

                }
                 Console.WriteLine();
            }
            Console.ReadKey();
        }
    }
}

bubuko.com,布布扣

杨辉三角

标签:blog   http   io   ar   sp   for   on   2014   log   

原文地址:http://blog.csdn.net/hbd0616/article/details/41410117

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!