输出以下图形(第一行前没有空格)
*********
 *******
  *****
   ***
     *
 for(int i=1;       【1】      ;i++)
           {
               for(int j=1;         【2】       ;j++)
               {
                   Console.Write(" ");
               }
               for(int j=1;      【3】        ;        【4】      )
               {
                   Console.Write("*");
               }
                       【5】           ;
           }