首页 > 编程 > C# > 正文

C#习题:编程打印杨辉三角

2023-05-05 19:01:34
字体:
来源:转载
供稿:网友

打印杨辉三角

1
1 1
1 2 1
1 3 3 1
 …

 源代码如下:

using System; 

class Class1

{

    static void Main()

    {

       const int N = 10; //输出10

       int i,j;

       int [,] yh = new int[N,N];

       for(i=0;i<N;i++)

       {

           yh[i,i] = 1;  //对角线上的值为1

           yh[i,0] = 1;  //1列上的值为1

       }

       for(i = 2;i<N;i++)

           for(j=1;j<=i-1;j++)

              yh[i,j] = yh[i-1,j-1] + yh[i-1,j];

       for(i = 0;i<N;i++)

       {

           for(j=0;j<=i;j++)

              Console.Write("{0,5}",yh[i,j]);

           Console.WriteLine();

       }

    }

}

运行结果如下:

打印杨辉三角

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表