//
// Copyright (c) 2014软件技术1班
// A05 rights reserved.
// 作 者:A05黄婉菲
// 完成日期:2014年 11 月23日
// 版 本 号:v1.0
//
// 问题描述:杨辉三角形
// 输入描述:三个数
// 程序输出:杨辉三角形的形状
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
int[,] b = new int[11, 11];
for (int i = 0; i < 11; i++)
{
for (int j = 0; j < 11; j++)
{
if (i == j || j == 0)
b[i, j] = 1;
else if (i > 1 && j > 0)
b[i, j] = b[i - 1, j - 1] + b[i - 1, j];
}
}
for (int i = 0; i < 11; i++)
{
for (int j = 0; j < 11; j++)
{
if (b[i, j] != 0)
Console.Write("{0} ", b[i, j]);
else
Console.Write(" ");
}
Console.WriteLine();
}
Console.Read();
}
}
}
杨辉三角形
最新推荐文章于 2020-05-04 15:19:49 发布