*
    *   *
  *       *
    *   *
      *

解决方案 »

  1.   


                Console.WriteLine(@"      * 
        *  * 
      *      * 
        *  * 
          *");
      

  2.   

    Console.Print("                * "); 
    Console.Print("                *  * "); 
    Console.Print("              *  *  * "); 
      

  3.   

    Console.WriteLine ("                * "); 
    Console.WriteLine ("                *  * "); 
    Console.WriteLine ("              *  *  * "); 
      

  4.   

    <table>
    <Tr>
    <td>
         * <br>
        *  * <br>
      *      * <br>
        *  * <br>
          *</td>
    </tr>
    </table>
      

  5.   

    一些特殊符号的16进制unicode码,你要的这个?
    25c7

    25c6

    25a1

    25a0

    25b3

    25b2

    25cb

    25cf

    25ce

    2606

    2605
      

  6.   


    using System;
    class  Test
    {
    static void Main()
    {
    for(int i=1;i<=6;i++)//控制行数 ,输出图形上半部分
    {
    for(int k=5;k>=i;k--)
    {
    Console.Write(" ");
    }
    for (int x=1;x<2*i;x++)
    {
    Console.Write("*");

    }
    Console.WriteLine();
    } for(int i=1;i<=5;i++)//控制行数 输出图形下半部分
    {
    for(int k=1;k<=i;k++)
    {
    Console.Write(" ");
    }
    for (int x=11;x>2*i;x--)
    {
    Console.Write("*");
    }
    Console.WriteLine();
    }
    }
    }直接写个算法
    c里面有个题目就只这样的  挺经典的
      

  7.   

    Console.WriteLine("      * \n    *  * \n  *      * \n    *  * \n      *");