Star Pattern Program in C#

Advertisements

Prev Tutorial Next Tutorial

Print Star Pattern Program in C#

In C# Programming Print star pattern code is very simple to write just follow same concept like C only you need to change syntax.

print star pattern in c#

Print Star Pattern in C#

using System;  

public class StarPattern  
 {  
 public static void Main(string[] args)
 {
  for (int row = 1; row <= 5; ++row)
  {
  for (int col = 1; col <= row; ++col)
  {
   Console.Write("*");
  }
   Console.WriteLine();
  }
 }
} 

Output

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

Print Star Pattern Program in C#

using System;  

public class StarPattern  
{  
public static void Main(string[] args)
{
for (int row=8; row>=1; --row)
{
for (int col=1; col<=row; ++col)
{
Console.Write("*");
}
Console.WriteLine();
}
}
} 

Output

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

Print Star Pattern Program in C#

using System;  

public class StarPattern  
{  
public static void Main(string[] args)
 {
  int val = 5;
  int i, j, k;
  for (i=1; i<=val; i++)
  {
  for (j=1; j<=val-i; j++)
  {
  Console.Write(" ");
  }
  for (k=1; k<=i; k++)
  {
  Console.Write("*");
  }
  Console.WriteLine("");
  }
  Console.ReadLine();
 }
} 

Output

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

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements