Xpode.com        Click here to Print this article.

Numeric Triangle (II) in C#

static void Main(string[] args)
{
      for (int i = 0; i <= 5; i++)
      {
        for (int j =i; j>= 0; j--)
        {
          Console.Write(" "+ i+" ");
          System.Threading.Thread.Sleep(100);
         }
      Console.Write(" \n");
       }
      Console.ReadLine();
}

Output:





http://
http://

Contributed by:
Rohit kakria
I am software developer, moderator of xpode.com

Resourse address on xpode.com
http://www.xpode.com/Print.aspx?Articleid=398

Click here to go on website