C# Pascal Triangle

This blog article shows you how to do a Pascal Triangle using C#. I found this code in C# but the below sharp does not really show as a triangle.


Hence, I modified the C++ version of the Pascal Triangle. The code as below.

class Program

{

    static void Main(string[] args)

    {

        long n = 5;

        genPascalsTriangle(n);

    }

    public static long fact(long n)

    {

        long i, fact = 1;

        for (i = n; i > 1; i–)

            fact *= i;

        return fact;//factorial of given number

    }

    public static long nCr(long n, long r)

    {

        long nume = 1, i;

        for (i = n; i > r; i–)

            nume *= i;

        return (nume / fact(n – r));

    }

    public static void genPascalsTriangle(long n)

    {

        string str = “”;

        for (int i = 0; i < n; i++)

        {

            for (int j = 0; j < (n – i – 1); j++)

                Console.Write(str.PadLeft(3));

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

            {

                Console.Write(str.PadLeft(3));

                Console.Write(nCr(i, j));

                Console.Write(str.PadLeft(3));

            }

            Console.WriteLine();

        }

    }

}

You will see the triangle will you run the code.


Source code download: https://github.com/chanmmn/general/tree/master/ConAppPad/?WT.mc_id=DP-MVP-36769

Reference: https://www.tutorialspoint.com/pascal-s-triangle-in-cplusplus#:~:text=Pascal’s%20triangle%20is%20an%20array,top%20of%20the%20current%20cell./?WT.mc_id=DP-MVP-36769

Unknown's avatar

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net, Cloud, Community, Computers and Internet, Data Platform and tagged . Bookmark the permalink.

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.