C# Console ile yıldız,desen,üçgen vb çalışmalar -4- *'lar ile içi dolu baklava dilimi


C# Console ile yıldız,desen,üçgen vb çalışmalar -4- *'lar ile içi dolu baklava dilimi
{
static void Main([] args)
{
  int i, j;
  int space = 10;
  int MAX = space+1;
  for (i = ; i <  i++)
  {
    for (j  ; j < ; j++)
    {
      Console.Write(" ")
    }
    for (j = 0; j <=  ++)
    {
      Console.Write("* ")
    }
    Console.Write("\n")
    space
  }
  space = 0;
  for (i = MAX; i > 0; i
  {
    for (j  ; j < ; j++)
    {
      Console.Write(" ")
    }
    for (j = 0; j  ; j++)
    {
      Console.Write("* ")
    }
    Console.Write("\n")
    space++;
  }
  Console.ReadLine()
}
 
 
 
  <center>CIKTI  </center>
          *
         * *
        * * *
       * * * *
      * * * * *
     * * * * * *
    * * * * * * *
   * * * * * * * *
  * * * * * * * * *
 * * * * * * * * * *
* * * * * * * * * * *
* * * * * * * * * * *
 * * * * * * * * * *
  * * * * * * * * *
   * * * * * * * *
    * * * * * * *
     * * * * * *
      * * * * *
       * * * *
        * * *
         * *
          * 
 
}