Friday 29 July 2016

Star Programming 3

Introduction


Hi guys, today I will post how to write a basic star programming in C#, this is generally helpful to the fresher and whoever preparing for interviews.

My previous post was Star Programming 2

static void Main(string[] args)
{
    Console.WriteLine("Please Enter a number");
    int num = Convert.ToInt32(Console.ReadLine());
    for (int i = num; i>0; i--)
    {
        for (int k = num - i; k > 0; k--)
        {
            Console.Write(" ");
        }
        for (int j = 2*i-1; j>0; j--)
        {
            Console.Write("*");
        }
        Console.WriteLine();
    }
}

No comments:

Post a Comment