//作者:莫明剑
//
//完成时间:2014年11月27日
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication24
{
class Program
{
static void Main(string[] args)
{
int i, j;//定义两个整数型变量
int[,] a = new int[11, 11];//定义二维矩形数组
Console.WriteLine("杨辉三角的C#编辑");//输出字符串
for (i = 0; i < 11; i++)//使用for循环
{
a[i, 0] = 1;//循环语句
a[i, i] = 1;//循环语句
} for (i = 2; i < 11; i++)
for (j = 1; j < i; j++)
a[i, j] = a[i - 1, j - 1] + a[i - 1, j];
for (i = 0; i < 11; i++)
{
for (j = 0; j <= i; j++)
{
Console.Write(" {0} ", a[i, j]);
} Console.WriteLine();
}
Console.ReadLine();
}
}
}
杨辉三角的C#编辑
原文作者:杨辉三角问题
原文地址: https://blog.csdn.net/B06momingjian/article/details/41557649
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/B06momingjian/article/details/41557649
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。