Recent Posts
recent

Display ASTERISK (STAR) PYRAMID

Star Pyramid:

    *
   * *
  * * *
 * * * *
* * * * *

class Program
{
static void Main(string[] args)
{
int k=4 ;

for (int i = 1; i <= 5; i++)
{
for (int s = k; s>= 1; s--)
{
Console.Write(" ");
}
k--;
for (int j = 1; j <= i; j++)
{

Console.Write("* ");
}

Console.WriteLine();
}
Console.ReadLine();
}
}
Unknown

Unknown

No comments:

Post a Comment

Powered by Blogger.