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


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