c# 打印杨辉三角(二维不规则数组)

c# 打印杨辉三角(二维不规则数组),第1张

概述代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApp3_打印杨辉三角_二维不规则数组_{    class Program    {        static void Main...

代码如下:

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

namespace ConsoleApp3_打印杨辉三角_二维不规则数组_
{
    class Program
    {
        static voID Main(string[] args)
        {
            int k = 9;
            int[][] a = new int[k][];  //定义二维不规则数组
            for (int i = 0; i < a.Length; i++)
                a[i] = new int[i + 1];
            for(int j = 0; j < a.Length; j++)
            {
                a[j][0] = 1;
                a[j][a[j].Length - 1] = 1;
                for (int m = 1; m < a[j].Length - 1; m++)
                    a[j][m] = a[j - 1][m - 1] + a[j - 1][m];
            }
            for(int i = 0; i < a.Length; i++)
            {
                for (int j = 0; j < a[i].Length; j++)
                    Console.Write("{0}\t",a[i][j]);
                Console.Writeline();
            }
        }
    }
}

总结

以上是内存溢出为你收集整理的c# 打印杨辉三角(二维不规则数组)全部内容,希望文章能够帮你解决c# 打印杨辉三角(二维不规则数组)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1212880.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存