用Csharp编写杨辉三角

软件技术1班        
  
作    者:A29 邢晓康    
  
完成日期:2014年 11 月 22 日        
  
问题描述:用Csharp编写杨辉三角

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

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入杨辉三角的前N行的个数:");
            int N = Convert.ToInt32(Console.ReadLine());
            int[][] yhsj = new int[N][];//定义变量存放杨辉三角数组。
            int i, j;
            for (i = 0; i < N; i++)
            {
                yhsj[i] = new int[i + 1];//给第i行分配储存空间。            
            }
            for (i = 0; i < N; i++)
            {//每行首列和尾列的值均为1;
                yhsj[i][0] = 1;
                yhsj[i][i] = 1;
            }
            for (i = 2; i < N; i++)
            {//i=2;意思是i从0开始,当i=2时,相当于是从第3行开始变化。
                for (j = 1; j < i; j++)  //j

用Csharp编写杨辉三角_第1张图片


总结:通过这次作业我大致理解与模仿了别人编写此类数组Csharp程序。


你可能感兴趣的:(用Csharp编写杨辉三角)